結果

問題 No.630 門松グラフ
ユーザー KoshStormKoshStorm
提出日時 2018-01-05 22:59:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-12-23 07:13:00
合計ジャッジ時間 5,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,008 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 26 ms
11,008 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,880 KB
testcase_14 WA -
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 200 ms
15,744 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 203 ms
15,744 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 WA -
testcase_25 AC 26 ms
10,752 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 200 ms
15,232 KB
testcase_29 AC 174 ms
14,592 KB
testcase_30 AC 165 ms
13,696 KB
testcase_31 WA -
testcase_32 AC 103 ms
12,928 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split(" "))

if M > ((N-2) * 2) or (N-1) > M :
	print("NO")
	exit(0)
else:
	print("YES")

a = [100000,99999]
remain_ver = [i for i in range(1,N-1)]
a.extend(remain_ver)

for num in a:
	print(num,end=" ")
print()

if M % 2 == 0:
	print("3 1")
	print("3 2")
	M -= 2
	for i in range(4,N+1):
		if (M == 0):
			exit(0)
		print(str(i) + " 1")
		M -= 1
	if M >= 0:
		for i in range(4,N+1):
			if (M == 0):
				exit(0)
			print(str(i) + " 2")
			M -= 1

		
else:
	print("3 1")
	print("3 2")
	M -= 2
	for i in range(4,N+1):
		if (M == 0):
			exit(0)
		print(str(i) + " 1")
		M -= 1
	if M >= 0:
		for i in range(4,N+1):
			if (M == 0):
				exit(0)
			print(str(i) + " 2")
			M -= 1

0