結果

問題 No.994 ばらばらコイン
ユーザー RiburaRibura
提出日時 2020-05-01 01:26:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 747 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-06-01 05:52:17
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 234 ms
24,960 KB
testcase_03 AC 217 ms
23,552 KB
testcase_04 AC 204 ms
23,296 KB
testcase_05 AC 120 ms
17,024 KB
testcase_06 AC 270 ms
23,552 KB
testcase_07 AC 207 ms
23,296 KB
testcase_08 AC 186 ms
19,584 KB
testcase_09 AC 200 ms
22,656 KB
testcase_10 AC 147 ms
19,584 KB
testcase_11 AC 207 ms
20,608 KB
testcase_12 AC 185 ms
21,376 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 WA -
testcase_20 AC 30 ms
10,496 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)

from collections import deque

n, k = map(int, readline().split())
graph = [[] for _ in range(n)]
for i in range(n - 1):
    a, b = map(int, readline().split())
    graph[a - 1].append(b - 1)


def dfs(s):
    global k
    cnt = 0
    check = [False] * n
    stack = deque([s])
    while stack:
        now = stack.pop()
        check[now] = True
        for next in graph[now]:
            if check[next]:
                continue
            k -= 1
            cnt += 1
            if k == 1:
                print(cnt)
                exit()
            stack.appendleft(next)


dfs(0)
print(-1)
0