Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
159848 梁乃元 二进制半整数 C++ 通过 100 5 MS 240 KB 427 2024-07-31 21:41:51

Tests(5/5):


# include <bits/stdc++.h> using namespace std ; int main ( ) { int n , cnt = 0 , q ; cin >> q ; while ( q -- ) { cin >> n ; cnt = 0 ; if ( n == 1 ) { cout << "no" << endl ; continue ; } while ( n > 0 ) { if ( n % 2 ) { cnt ++ ; } n >>= 1 ; } if ( cnt <= 2 ) { cout << "yes" << endl ; } else { cout << "no" << endl ; } } return 0 ; }


测评信息: