結果
問題 | No.1523 +/- Tree |
ユーザー | shotoyoo |
提出日時 | 2021-05-28 21:57:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 63,744 KB |
最終ジャッジ日時 | 2024-11-07 09:28:03 |
合計ジャッジ時間 | 8,040 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 43 ms
51,584 KB |
testcase_03 | AC | 41 ms
51,456 KB |
testcase_04 | AC | 43 ms
51,712 KB |
testcase_05 | AC | 40 ms
52,352 KB |
testcase_06 | AC | 39 ms
51,456 KB |
testcase_07 | AC | 40 ms
51,584 KB |
testcase_08 | AC | 40 ms
52,096 KB |
testcase_09 | AC | 40 ms
52,096 KB |
testcase_10 | AC | 40 ms
51,584 KB |
testcase_11 | AC | 40 ms
51,584 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 40 ms
51,584 KB |
testcase_20 | AC | 40 ms
52,124 KB |
testcase_21 | AC | 42 ms
52,096 KB |
testcase_22 | AC | 43 ms
52,096 KB |
testcase_23 | AC | 39 ms
51,584 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 | AC | 40 ms
51,968 KB |
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 | AC | 39 ms
51,712 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) n,k = list(map(int, input().split())) if (n-1)%k==0: print("No") else: v = 10000 - 1 v2 = -5000 es = [] for i in range(1,n): if i%k==1: val = v else: val = v2 es.append((i,i+1,val)) print("Yes") write("\n".join((" ".join(map(str, item)) for item in es)))