結果

問題 No.994 ばらばらコイン
ユーザー stngstng
提出日時 2022-08-17 14:14:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 89,100 KB
最終ジャッジ日時 2024-04-15 04:24:29
合計ジャッジ時間 3,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,244 KB
testcase_01 AC 40 ms
54,804 KB
testcase_02 AC 136 ms
88,664 KB
testcase_03 AC 165 ms
88,760 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 186 ms
89,100 KB
testcase_07 WA -
testcase_08 AC 145 ms
85,464 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 153 ms
85,648 KB
testcase_12 WA -
testcase_13 AC 38 ms
53,760 KB
testcase_14 AC 39 ms
53,940 KB
testcase_15 AC 37 ms
55,048 KB
testcase_16 AC 38 ms
55,576 KB
testcase_17 AC 38 ms
54,500 KB
testcase_18 AC 37 ms
55,104 KB
testcase_19 AC 37 ms
54,688 KB
testcase_20 AC 38 ms
54,400 KB
testcase_21 AC 39 ms
54,088 KB
testcase_22 AC 38 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,k = map(int,input().split())

ab = [[] for i in range(n)]
for i in range(n-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    ab[a].append(b)
    ab[b].append(a)

d = deque()
d.append(0)
chk = [0]*(n)
chk[0] = 1

f = False
cnt = 0

while len(d) > 0:
    if k == 1:
        f = True
        break
    tmp = d.popleft()
    for i in ab[tmp]:
        if chk[i] == 0:
            chk[i] = 1
            d.append(i)
            k -= 1
            cnt += 1

if f == True:
    print(cnt)
else:
    print(-1)
0