记录编号 |
411651 |
评测结果 |
AAAAAAAAAA |
题目名称 |
讨厌整除的小明 |
最终得分 |
100 |
用户昵称 |
Hyoi_0Koto |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.036 s |
提交时间 |
2017-06-06 09:32:19 |
内存使用 |
0.06 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cctype>
#include<cmath>
using namespace std;
typedef long long ll;
inline void in(int &x){
x=0;int f=1;char t=getchar();
while(!isdigit(t)){if(t=='-')f=-1;t=getchar();}
while(isdigit(t)){x=x*10+t-48;t=getchar();}
x*=f;
}
inline void lin(ll &x){
x=0;int f=1;char t=getchar();
while(!isdigit(t)){if(t=='-')f=-1;t=getchar();}
while(isdigit(t)){x=x*10+t-48;t=getchar();}
x*=f;
}
int n;
ll a;
inline void work(){
in(n);
while(n--){
lin(a);
printf("%lld\n",(ll)(log2(a)+1));
}
}
inline int mian(){
freopen("ming.in","r",stdin);
freopen("ming.out","w",stdout);
work();
}
int miku=mian();
int main(){;}