mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 10:38:54 +00:00
23 lines
366 B
C++
23 lines
366 B
C++
#include <iostream>
|
|
#include <cmath>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
int t;
|
|
long long n;
|
|
|
|
int main() {
|
|
cin >> t;
|
|
while (t--) {
|
|
cin >> n;
|
|
if (floor(log2(n)) == log2(n) || floor(log2(n / 3.0)) == log2(n / 3.0)) {
|
|
cout << 0 << endl;
|
|
} else {
|
|
cout << 1 << endl;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|