#include <bits/stdc++.h>
using namespace std;
int main(void)
{
int tc;
cin >> tc;
while (tc--)
{
int n, m;
cin >> n >> m;
if ((max(n, m)%2) == 0)
{
if (n > m)
{
cout << n-1 << "\n";
for (int i = 1; i < n; i++)
cout << "1 ";
cout << "\n";
}
else
{
cout << m-1 << "\n";
for (int i = 1; i < m; i++)
cout << "-1 ";
cout << "\n";
}
}
else
{
if (m == 2)
{
cout << n << "\n";
for (int i = 1; i <= n; i++)
{
if (i%2) cout << "-3 ";
else cout << "4 ";
}
cout << "\n";
}
else
{
cout << m << "\n";
for (int i = 1; i <= m; i++)
{
if (i%2) cout << "3 ";
else cout << "-4 ";
}
cout << "\n";
}
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
256 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 |
256 KB |
Jury has the better answer : jans = 5, pans = 3 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
256 KB |
there is incorrect sequence |
2 |
Halted |
0 ms |
0 KB |
- |