Submission #782021

# Submission time Handle Problem Language Result Execution time Memory
782021 2023-07-13T14:47:53 Z Andrey Binary Subsequences (info1cup17_binary) C++14
0 / 100
900 ms 340 KB
#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;
}
# Verdict Execution time Memory Grader output
1 Incorrect 122 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 51 ms 304 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1078 ms 212 KB Time limit exceeded
2 Halted 0 ms 0 KB -