提交时间:2024-08-19 15:49:23

运行 ID: 167025

#include<bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>m; while(m--) { cin>>n; if((n&(n-1))==0){ cout<<"Yes"<<endl; } else{ cout<<"No"<<endl; } } return 0; }