提交时间:2024-08-20 13:42:01

运行 ID: 168762

#include <iostream> #include<cstring> using namespace std; int main() { int t,n; cin>>t; while(t--) { cin>>n; int s=0; long long k=1; while(k) { if(k&n) { s++; if(s>2) { break; } } k=k<<1; } if(s>2 || n==1) { cout<<"no"<<endl; } else { cout<<"yes"<<endl; } } return 0; }