提交时间:2024-08-19 15:21:17
运行 ID: 166769
#include<bits/stdc++.h> using namespace std; int main(){ int t,n; cin>>t; while(t--){ cin>>n; if((n&(n-1))==0){ printf("Yes\n"); }else{ printf("No\n"); } } }