Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
173587 C班—刘铠锋 二进制半整数 C++ 无测评数据 0 0 MS 0 KB 407 2024-08-20 21:49:16

Tests(0/0):


#include <bits/stdc++.h> using namespace std; bool is(int n) { if (n < 3) { return false; } int cnt = 0; while (n > 0) { if (n & 1) { cnt++; } n >>= 1; } return cnt == 2; } int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int n; cin >> n; if (is(n)) { cout << "yes" << endl; } else { cout << "no" << endl; } } return 0; }