답안 #572446

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
572446 2022-06-04T11:49:10 Z valerikk Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>

using namespace std;

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	int n, m;
	cin >> n >> m;

	if (m > n - 1) {
		cout << "NO\n";
		return 0;
	}

	cout << "YES\n";
	cout << 2 * n - 4 << "\n";
	for (int i = 2; i <= n - 1; ++i) {
		cout << i << " " << i << " ";
	}
	cout << "\n";
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -