提交时间:2024-07-18 21:45:01
运行 ID: 156950
#include<bits/stdc++.h> using namespace std; int main(){ int t; scanf("%d",&t); for(int i=1;i<=t;i++){ int temp; scanf("%d",&temp); while(temp>1){ temp=(temp>>1); } if(temp==1) printf("Yes\n"); else printf("No\n"); } }