Submission #945617

# Submission time Handle Problem Language Result Execution time Memory
945617 2024-03-14T05:37:22 Z vjudge1 trapezoid (balkan11_trapezoid) C++17
0 / 100
130 ms 884 KB
#include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
long long n;
cin>>n;
long long lg=63-__builtin_clzll(n);
puts(n==(1<<lg)?"True":"False");
}
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Expected integer, but "False" found
2 Incorrect 0 ms 348 KB Expected integer, but "True" found
3 Incorrect 1 ms 348 KB Expected integer, but "False" found
4 Incorrect 2 ms 348 KB Expected integer, but "False" found
5 Incorrect 3 ms 348 KB Expected integer, but "False" found
6 Incorrect 5 ms 348 KB Expected integer, but "False" found
7 Incorrect 5 ms 348 KB Expected integer, but "False" found
8 Incorrect 7 ms 344 KB Expected integer, but "False" found
9 Incorrect 14 ms 472 KB Expected integer, but "False" found
10 Incorrect 28 ms 508 KB Expected integer, but "False" found
11 Incorrect 34 ms 348 KB Expected integer, but "False" found
12 Incorrect 71 ms 588 KB Expected integer, but "False" found
13 Incorrect 77 ms 740 KB Expected integer, but "False" found
14 Incorrect 92 ms 792 KB Expected integer, but "False" found
15 Incorrect 100 ms 688 KB Expected integer, but "False" found
16 Incorrect 106 ms 860 KB Expected integer, but "False" found
17 Incorrect 112 ms 848 KB Expected integer, but "False" found
18 Incorrect 116 ms 748 KB Expected integer, but "False" found
19 Incorrect 124 ms 884 KB Expected integer, but "False" found
20 Incorrect 130 ms 768 KB Expected integer, but "False" found