結果
問題 | No.1523 +/- Tree |
ユーザー | 👑 Kazun |
提出日時 | 2021-07-16 19:18:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 70,404 KB |
最終ジャッジ日時 | 2024-07-06 06:07:06 |
合計ジャッジ時間 | 6,851 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,532 KB |
testcase_01 | AC | 31 ms
52,516 KB |
testcase_02 | WA | - |
testcase_03 | AC | 33 ms
52,936 KB |
testcase_04 | AC | 31 ms
53,368 KB |
testcase_05 | AC | 32 ms
51,880 KB |
testcase_06 | AC | 31 ms
52,692 KB |
testcase_07 | AC | 31 ms
52,496 KB |
testcase_08 | AC | 29 ms
53,364 KB |
testcase_09 | AC | 30 ms
52,068 KB |
testcase_10 | AC | 29 ms
52,568 KB |
testcase_11 | AC | 30 ms
52,628 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 35 ms
52,088 KB |
testcase_18 | WA | - |
testcase_19 | AC | 32 ms
52,480 KB |
testcase_20 | AC | 31 ms
52,324 KB |
testcase_21 | AC | 33 ms
52,080 KB |
testcase_22 | AC | 30 ms
52,896 KB |
testcase_23 | AC | 31 ms
53,404 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
N,K=map(int,input().split()) if K==N-1 or K==1: X=[] elif K==2: if N%2==1: X=[] else: X=[] for i in range(1,N): if i%2==1: X.append((i,i+1,2)) else: X.append((i,i+1,-3)) else: X=[] for i in range(1,K): X.append((i,i+1,-1)) for i in range(K+1,N+1): X.append((i,K-1,K-2)) if X: print("Yes") for u,v,w in X: print(u,v,w) else: print("No")