結果

問題 No.994 ばらばらコイン
ユーザー miya145592miya145592
提出日時 2023-05-21 03:47:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 85,652 KB
最終ジャッジ日時 2024-06-01 09:28:51
合計ジャッジ時間 3,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,856 KB
testcase_01 AC 40 ms
53,436 KB
testcase_02 AC 132 ms
85,452 KB
testcase_03 AC 163 ms
85,412 KB
testcase_04 AC 167 ms
85,652 KB
testcase_05 AC 117 ms
81,192 KB
testcase_06 AC 162 ms
85,480 KB
testcase_07 AC 166 ms
85,464 KB
testcase_08 AC 129 ms
82,244 KB
testcase_09 AC 152 ms
85,512 KB
testcase_10 AC 129 ms
82,152 KB
testcase_11 AC 148 ms
84,532 KB
testcase_12 AC 151 ms
84,776 KB
testcase_13 AC 40 ms
52,900 KB
testcase_14 AC 39 ms
52,812 KB
testcase_15 AC 40 ms
53,344 KB
testcase_16 AC 40 ms
54,244 KB
testcase_17 AC 39 ms
52,808 KB
testcase_18 AC 38 ms
52,596 KB
testcase_19 AC 39 ms
53,392 KB
testcase_20 AC 39 ms
52,680 KB
testcase_21 AC 40 ms
52,564 KB
testcase_22 AC 39 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(int, input().split())
    a-=1
    b-=1
    G[a].append(b)
    G[b].append(a)
if N<K:
    print(-1)
    exit()
print(K-1)
0