답안 #290518

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
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";
		}
	}
}
# 결과 실행 시간 메모리 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 there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 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 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 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 -