厦门理工学院oj 1225 -- 琪露诺的完美算术教室(二)
程序员文章站
2022-06-01 17:19:58
...
假设在十进制下的结果为,则其从进制转化过来时,可以写作
其中为在进制下最高位到第一个末尾0前一位的数转为十进制,为末尾0的个数
以在二进制下(1111000)为例,,其中的二进制表示为1111,末尾0的个数为3
又通过分解质因数,可以写成,故有
而也可通过分解质因数写成
记,则
那么怎么取出里质数的个数呢,首先从中取出倍数的个数,接着取出倍数的个数…,直到
在这题里很容易观察出二进制下末尾0的个数即为中质因子2的个数
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
typedef long long LL;
using namespace std;
int main()
{
int T;
cin >> T;
while(T--)
{
LL n;
cin >> n;
LL res = 0;
while(n)
{
res += n / 2;
n /= 2;
}
cout << res << endl;
}
return 0;
}
上一篇: flex布局基本语法
下一篇: mysql关联更新update