This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "bits/stdc++.h"
using namespace std;
const int mod = (int) 1e9 + 7;
int get(int a, int b) {
if (a > b) {
swap(a, b);
}
if (a < 0 || b < 0) {
return 0;
}
if (a == 0 && b == 0) {
return 1;
}
if (a == b) {
return 0;
}
b %= (a + 1);
return get(a, b);
}
void solve() {
int k;
cin >> k;
k++;
int ans = 0;
for (int j = 0; j < k; j++) {
ans += get(j, k - j - 1);
ans %= mod;
}
cout << ans << '\n';
cout << -1 << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
cin >> t;
while (t--) {
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |