#include <bits/stdc++.h>
using namespace std;
void solve() {
int k,ans = 0,a = 0,b = 0;
cin >> k;
for(int i = 0; i <= k; i++) {
a = i;
b = k-i;
while(a != b) {
if(a < b) {
swap(a,b);
}
a-=b+1;
}
if(a == 0 && b == 0) {
ans++;
}
}
cout << ans << "\n";
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
while(t--) {
solve();
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
122 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
51 ms |
304 KB |
Unexpected end of file - int32 expected |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1078 ms |
212 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |