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

Tests(3/10):


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


测评信息: