이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |