結果

問題 No.630 門松グラフ
ユーザー wajima_wataruwajima_wataru
提出日時 2018-01-05 22:48:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 222 ms / 1,500 ms
コード長 830 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-02 10:27:34
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
11,008 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 25 ms
11,008 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 25 ms
10,880 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 24 ms
10,880 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 222 ms
15,232 KB
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 218 ms
15,232 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 140 ms
10,880 KB
testcase_25 AC 25 ms
11,008 KB
testcase_26 AC 144 ms
11,008 KB
testcase_27 AC 141 ms
10,880 KB
testcase_28 AC 217 ms
14,976 KB
testcase_29 AC 201 ms
14,268 KB
testcase_30 AC 185 ms
13,312 KB
testcase_31 AC 163 ms
12,800 KB
testcase_32 AC 112 ms
12,544 KB
testcase_33 AC 88 ms
11,008 KB
testcase_34 AC 135 ms
12,032 KB
testcase_35 AC 99 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N, M = map(int, input().split())
if M < N - 1:
    print('NO')
    exit()    
if N % 2 == 0:
    if M > (N // 2) ** 2:
        print('NO')
        exit()
else:
    if M > (N // 2) * (N // 2 + 1):
        print('NO')
        exit()

print('YES')
for i in range(N):
    print(i + 1, end=' ')
print()
small = list(range(1, math.ceil(N / 2) + 1))
big = list(range(math.ceil(N / 2) + 1, N + 1))
count = 0
flg = True
s = 0
b = 0
while count < M:
    if flg:
        for n in big[b:]:
            print(str(small[s]) + ' ' + str(n))
            count += 1
            if count >= M:
                exit()
        s += 1
    else:
        for n in small[s:]:
            print(str(big[b]) + ' ' + str(n))
            count += 1
            if count >= M:
                exit()
        b += 1             
    flg = not(flg)
0