提交时间:2024-08-19 15:20:43
运行 ID: 166757
#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"); } } }