#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void solve() {
int n, m;
cin >> n >> m;
if (n == m) return cout << "0\n", void();
if (!(n % m)) {
cout << n - 1 << '\n';
for (int i = 1; i < n; i++)
cout << "1 ";
return cout << "\n", void();
}
if (!(m % n)) {
cout << m - 1 << '\n';
for (int i = 1; i < m; i++)
cout << "-1 ";
return;
}
cout << "sad\n";
}
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int T;
cin >> T;
while (T--) solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Ok |
2 |
Correct |
1 ms |
504 KB |
Ok |
3 |
Incorrect |
1 ms |
336 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
504 KB |
Jury has the better answer : jans = 1, pans = 0 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Expected integer, but "sad" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Expected integer, but "sad" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Ok |
2 |
Correct |
1 ms |
504 KB |
Ok |
3 |
Incorrect |
1 ms |
336 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Ok |
2 |
Correct |
1 ms |
504 KB |
Ok |
3 |
Incorrect |
1 ms |
336 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
336 KB |
Ok |
2 |
Correct |
1 ms |
504 KB |
Ok |
3 |
Incorrect |
1 ms |
336 KB |
Jury has the better answer : jans = 93, pans = 0 |
4 |
Halted |
0 ms |
0 KB |
- |