博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 2608(找规律)
阅读量:6243 次
发布时间:2019-06-22

本文共 526 字,大约阅读时间需要 1 分钟。

题目链接:

思路:T[n]为1时当且仅当n为某数的平方或者是某数平方的2倍。

1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 typedef long long LL; 8 9 int main(){10 int _case,n,ans,k;11 scanf("%d",&_case);12 while(_case--){13 scanf("%d",&n);14 ans=k=(int)sqrt(n*1.0);15 for(LL i=1;i<=k;i++)if(i*i*2<=n)ans++;16 printf("%d\n",ans%2);17 }18 return 0;19 }
View Code

 

转载地址:http://zssia.baihongyu.com/

你可能感兴趣的文章
python-字符串
查看>>
LabVIEW串口通信
查看>>
2017UGUI之slider
查看>>
python下载酷狗音乐源码
查看>>
MySQL学习----explain查看一条sql 的性能
查看>>
第零次作业
查看>>
Android + eclipse +ADT安装完全教程
查看>>
【批处理学习笔记】第七课:简单的批处理命令(6)
查看>>
leetcode 【 Subsets 】python 实现
查看>>
leetcode 【 Intersection of Two Linked Lists 】python 实现
查看>>
codeforces 767A Snacktower(模拟)
查看>>
用 Quartz 画聊天对话框背景实例
查看>>
Quartz2D简单绘制之饼状图
查看>>
你优化系统的目标是什么?
查看>>
SVN(64位)报 Failed to load JavaHL Library. 的解决方法
查看>>
基本运算符
查看>>
黄聪:WordPress 多站点建站教程(三):主站如何调用子站的文章内容、SQL语句如何写?...
查看>>
Activity的启动模式 4种launchMode Intent.FLAG_NEW_TASK 详解
查看>>
hdu 2254 奥运 **
查看>>
数据结构基础
查看>>