Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
168083 | 刘睿甫 | 二进制半整数 | C++ | 通过 | 100 | 191 MS | 256 KB | 437 | 2024-08-19 22:19:31 |
#include <string> #include <cstdio> #include <iostream> #include <cmath> using namespace std; string f(int n){ for (int i=0;i<=n;i++){ if (pow(2,i)>n) break; for (int j=0;j<=n;j++){ if (pow(2,i)+pow(2,j)>n) break; 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; }