提交时间:2024-08-19 18:04:52

运行 ID: 167811

#include <iostream> bool f(int n) { int cnt = 0; while (n > 0) { if (n & 1) { cnt++; if (cnt > 2) { return false; } } n >>= 1; } return cnt == 2; } int main() { int t; std::cin >> t; while (t--) { int n; std::cin >> n; if (f(n)) { std::cout << "yes" << std::endl; } else { std::cout << "no" << std::endl; } } return 0; }