結果

問題 No.630 門松グラフ
ユーザー convexineqconvexineq
提出日時 2021-03-03 18:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 1,500 ms
コード長 327 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 80,404 KB
最終ジャッジ日時 2024-10-03 07:31:05
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,868 KB
testcase_01 AC 38 ms
52,580 KB
testcase_02 AC 37 ms
53,536 KB
testcase_03 AC 38 ms
51,944 KB
testcase_04 AC 38 ms
53,104 KB
testcase_05 AC 38 ms
52,288 KB
testcase_06 AC 38 ms
54,220 KB
testcase_07 AC 39 ms
52,248 KB
testcase_08 AC 37 ms
52,864 KB
testcase_09 AC 38 ms
53,120 KB
testcase_10 AC 38 ms
53,148 KB
testcase_11 AC 40 ms
52,324 KB
testcase_12 AC 40 ms
52,252 KB
testcase_13 AC 37 ms
52,156 KB
testcase_14 AC 39 ms
52,636 KB
testcase_15 AC 37 ms
52,144 KB
testcase_16 AC 38 ms
53,852 KB
testcase_17 AC 37 ms
52,672 KB
testcase_18 AC 38 ms
53,684 KB
testcase_19 AC 38 ms
52,768 KB
testcase_20 AC 121 ms
80,240 KB
testcase_21 AC 38 ms
52,692 KB
testcase_22 AC 121 ms
80,404 KB
testcase_23 AC 37 ms
53,296 KB
testcase_24 AC 100 ms
76,772 KB
testcase_25 AC 38 ms
53,340 KB
testcase_26 AC 104 ms
76,584 KB
testcase_27 AC 97 ms
76,472 KB
testcase_28 AC 120 ms
80,196 KB
testcase_29 AC 112 ms
79,372 KB
testcase_30 AC 113 ms
77,576 KB
testcase_31 AC 109 ms
78,184 KB
testcase_32 AC 93 ms
77,916 KB
testcase_33 AC 90 ms
76,624 KB
testcase_34 AC 101 ms
77,336 KB
testcase_35 AC 94 ms
76,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
if m+1 < n or n//2*(n-n//2) < m:
    print("NO")
    exit()
print("YES")
print(*range(1,n+1))
for i in range(n//2):
    print(i+1,n//2+1)
    m -= 1
while True:
    for i in range(n//2):
        for j in range(n//2+1,n):
            if m == 0: exit()
            print(i+1,j+1)
            m -= 1
0