답안 #1109217

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1109217 2024-11-06T08:14:42 Z Muhammet Nice sequence (IZhO18_sequence) C++17
0 / 100
1 ms 336 KB
#include <bits/stdc++.h>

using namespace std;

int main(){
	int t;
	cin >> t;
	while(t--){
		int n, m;
		cin >> n >> m;
		vector <int> a(max(n,m)+1);
		int x = max(n,m)-(max(n,m) % 2 == 0);
		cout << x << "\n";
		if(n < m){
			for(int i = 1; i <= x; i++){
				if(i % 2 == 1) cout << 4 << ' ';
				else cout << -5 << ' ';
			}
		}
		else {
			for(int i = 1; i <= x; i++){
				if(i % 2 == 1) cout << -5 << ' ';
				else cout << 4 << ' ';
			}
		}
		cout << '\n';
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Jury has the better answer : jans = 5, pans = 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB there is incorrect sequence
2 Halted 0 ms 0 KB -