結果

問題 No.630 門松グラフ
ユーザー wajima_wataruwajima_wataru
提出日時 2018-01-05 22:45:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 830 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-02 10:23:59
合計ジャッジ時間 5,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 RE -
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 26 ms
10,880 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 235 ms
15,232 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 246 ms
15,104 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 RE -
testcase_25 AC 28 ms
10,752 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 230 ms
14,848 KB
testcase_29 AC 203 ms
14,276 KB
testcase_30 AC 199 ms
13,568 KB
testcase_31 RE -
testcase_32 AC 127 ms
12,544 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

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(M / 2) + 1))
big = list(range(math.ceil(M / 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