結果

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

テストケース

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

ソースコード

diff #

#!/usr/bin/env python3
n, m = map(int, input().split())
a = n // 2
b = n - a
if m < n - 1 or a * b < m:
    print('NO')
    assert False
else:
    print('YES')
    print(*[ i + 1 for i in range(n) ])
    def edges():
        for j in range(b):
            yield ( 1, a + j + 1 )
        for i in range(1, a):
            for j in range(b):
                yield ( i + 1, a + j + 1 )
    for i, ( u, v ) in enumerate(edges()):
        if i == m:
            break
        print(u, v)
0