Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168071 | 刘睿甫 | 二进制半整数 | C++ | 运行超时 | 0 | 1000 MS | 256 KB | 375 | 2024-08-19 22:12:14 |
#include <string> #include <cstdio> #include <iostream> #include <cmath> using namespace std; string f(int n){ for (int i=0;i<=n;i++){ for (int j=0;j<=n;j++){ if (pow(2,i)+pow(2,j)==n) return "yes"; } } return "no"; } int main(){ int t,n; scanf("%d",&t); for (int i=0;i<t;i++){ scanf("%d",&n); cout<<f(n)<<endl; } return 0; }