Submission #290518

# Submission time Handle Problem Language Result Execution time Memory
290518 2020-09-03T23:13:50 Z luciocf Nice sequence (IZhO18_sequence) C++14
0 / 100
1 ms 256 KB
#include <bits/stdc++.h>

using namespace std;

int main(void)
{
	int tc;
	cin >> tc;

	while (tc--)
	{
		int n, m;
		cin >> n >> m;

		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 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 there is incorrect sequence
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 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 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 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 -