提交时间:2024-08-19 15:21:39

运行 ID: 166780

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