# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
847087 | 2023-09-09T06:41:25 Z | GrandTiger1729 | Nice sequence (IZhO18_sequence) | C++17 | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0)->sync_with_stdio(0); int t; cin >> t; while (t--) { int n, m; cin >> n >> m; if (n == m) { cout << n - 1 << '\n'; for (int i = 0; i < n - 1; i++) cout << 1 << " \n"[i == n - 2]; continue; } bool flag = 0; if (n < m) { swap(n, m); flag = 1; } vector<int> ans; if (n % m == 0) { ans = vector<int>(n - 1, 1); if (flag) { for (int &i : ans) i = -i; } for (int i = 0; i < ans.size(); i++) cout << ans[i] << " \n"[i + 1 == ans.size()]; continue; } if (flag) { for (int &i : ans) i = -i; } } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 1, pans = -1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 3, pans = 1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 2, pans = 1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Jury has the better answer : jans = 3, pans = -1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 1, pans = -1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 1, pans = -1 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Jury has the better answer : jans = 1, pans = -1 |
2 | Halted | 0 ms | 0 KB | - |