记录编号 404489 评测结果 AAAAAAAAAA
题目名称 讨厌整除的小明 最终得分 100
用户昵称 Gravatar泪寒之雪 是否通过 通过
代码语言 C++ 运行时间 0.071 s
提交时间 2017-05-13 17:31:07 内存使用 0.31 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,t,i,ald,k,f;
char c;
inline void read(long long &x) {
	x = 0, f = 1;
	c = getchar();
	for(; !isdigit(c); c = getchar()) if(c == '-') f = -1;
	for(; isdigit(c); c = getchar()) x = x * 10 + c - '0';
	x = x * f;
}
int main (){
	freopen("ming.in","r",stdin);
	freopen("ming.out","w",stdout);
	//scanf("%lld",&n);
	read(n);
	for (i=1;i<=n;i++)
	 {
	 	//scanf("%lld",&t);
	 	read(t);
	 	ald=floor(log2(t*1.0))+1;
	 	printf("%lld",ald);
	 }
	 
}