Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19988 杨竣周 求完全数的个数 C++ 解答错误 0 0 MS 252 KB 204 2021-05-27 20:47:02

Tests(0/10):


#include<bits/stdc++.h> using namespace std; int n,i=-1,a; int pe[8]={6,28,496,8128,130816,2096128,33550336,536854528}; int main(){ cin>>n; while(i<8) if(n>=pe[++i]) a++; cout<<a; return 0; }


测评信息: