結果

問題 No.994 ばらばらコイン
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-28 15:55:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,112 KB
最終ジャッジ日時 2024-06-09 08:26:42
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 24 ms
10,880 KB
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 298 ms
22,784 KB
testcase_09 WA -
testcase_10 AC 303 ms
23,040 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 27 ms
10,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 26 ms
10,880 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**5)
n,k=map(int,input().split())
g=[[] for _ in range(n)]
for _ in range(n-1):
    a,b=map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
d=[-1]*n
d[0]=1
def dfs(now,pre):
    for to in g[now]:
        if to==pre:
            continue
        d[to]=d[now]+1
        dfs(to,now)
dfs(0,-1)
if max(d)>=k:
    print(k-1)
else:
    print(-1)
0