提交时间:2024-08-13 14:09:55
运行 ID: 164282
#include <bits/stdc++.h> int main() { int t; long long n; scanf("%d", &t); while (t--) { scanf("%lld", &n); if (n < 4 || n & 1) { puts("NO"); continue; } while (!(n & 1)) n >>= 1; n--; if (n & (n - 1)) printf("NO\n"); else printf("YES\n"); } return 0; }