結果

問題 No.994 ばらばらコイン
ユーザー flippergoflippergo
提出日時 2020-12-30 09:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 94,156 KB
最終ジャッジ日時 2024-10-06 20:17:22
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,584 KB
testcase_01 AC 35 ms
52,564 KB
testcase_02 AC 127 ms
93,916 KB
testcase_03 AC 160 ms
94,064 KB
testcase_04 AC 170 ms
94,068 KB
testcase_05 AC 105 ms
85,076 KB
testcase_06 AC 157 ms
94,156 KB
testcase_07 AC 161 ms
94,016 KB
testcase_08 AC 121 ms
88,656 KB
testcase_09 AC 148 ms
93,812 KB
testcase_10 AC 141 ms
88,724 KB
testcase_11 AC 160 ms
90,464 KB
testcase_12 AC 168 ms
91,848 KB
testcase_13 AC 34 ms
53,972 KB
testcase_14 AC 35 ms
53,012 KB
testcase_15 AC 36 ms
52,768 KB
testcase_16 AC 37 ms
52,700 KB
testcase_17 AC 39 ms
52,264 KB
testcase_18 AC 35 ms
52,824 KB
testcase_19 AC 36 ms
52,952 KB
testcase_20 AC 34 ms
52,424 KB
testcase_21 AC 35 ms
52,068 KB
testcase_22 AC 34 ms
51,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(N-1):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
if K>N:
    print(-1)
else:
    print(K-1)
0