結果

問題 No.1523 +/- Tree
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-02 03:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 70,520 KB
最終ジャッジ日時 2024-08-02 03:15:11
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,072 KB
testcase_01 AC 36 ms
52,776 KB
testcase_02 AC 35 ms
53,556 KB
testcase_03 AC 35 ms
52,888 KB
testcase_04 AC 36 ms
52,364 KB
testcase_05 AC 36 ms
52,896 KB
testcase_06 AC 37 ms
53,228 KB
testcase_07 AC 33 ms
53,040 KB
testcase_08 AC 35 ms
52,900 KB
testcase_09 AC 36 ms
52,648 KB
testcase_10 AC 35 ms
52,752 KB
testcase_11 AC 36 ms
53,752 KB
testcase_12 AC 57 ms
67,956 KB
testcase_13 AC 59 ms
68,528 KB
testcase_14 AC 54 ms
66,308 KB
testcase_15 AC 41 ms
59,920 KB
testcase_16 AC 53 ms
67,640 KB
testcase_17 AC 37 ms
52,460 KB
testcase_18 AC 56 ms
70,520 KB
testcase_19 AC 35 ms
52,636 KB
testcase_20 AC 37 ms
52,584 KB
testcase_21 AC 36 ms
52,524 KB
testcase_22 AC 35 ms
52,128 KB
testcase_23 AC 35 ms
52,980 KB
testcase_24 AC 36 ms
53,284 KB
testcase_25 AC 55 ms
67,676 KB
testcase_26 AC 48 ms
64,420 KB
testcase_27 AC 53 ms
66,688 KB
testcase_28 AC 54 ms
67,264 KB
testcase_29 AC 46 ms
62,292 KB
testcase_30 AC 46 ms
62,536 KB
testcase_31 AC 54 ms
66,380 KB
testcase_32 AC 35 ms
52,868 KB
testcase_33 AC 52 ms
68,484 KB
testcase_34 AC 48 ms
64,412 KB
testcase_35 AC 53 ms
66,564 KB
testcase_36 AC 51 ms
63,348 KB
testcase_37 AC 50 ms
64,284 KB
testcase_38 AC 41 ms
59,720 KB
testcase_39 AC 49 ms
64,664 KB
testcase_40 AC 57 ms
69,880 KB
testcase_41 AC 51 ms
66,556 KB
testcase_42 AC 36 ms
52,188 KB
testcase_43 AC 54 ms
66,668 KB
testcase_44 AC 54 ms
66,812 KB
testcase_45 AC 35 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1523


def main():
    N, K = map(int, input().split())

    if K == 1 or K == N - 1:
        print("No")
        return
    
    if K == 2:
        if N % 2 == 0:
            n = (N - 1) // 2
            print("Yes")
            for i in range(N - 1):
                a = i + 1
                b = i + 2
                if i % 2 == 0:
                    w = (n + 1)
                else:
                    w = -(n + 2)
                print(a, b, w)
            return 
        else:
            print("No")
            return
    else:
        print("Yes")
        nega = 2 * (K - 1) + 1
        nega = -nega
        print(1, 2, nega)
        for i in range(2, 2 + (K - 1)):
            print(i, i + 1, 2)
        for i in range(2 + (K - 1), N):
            print(K, i + 1, 2)
        







if __name__ == '__main__':
    main()
0