답안 #290516

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
290516 2020-09-03T23:12:20 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 ((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";
			}
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 256 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 256 KB Jury has the better answer : jans = 2, pans = 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 256 KB Jury has the better answer : jans = 5, pans = 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB there is incorrect sequence
2 Halted 0 ms 0 KB -