結果

問題 No.806 木を道に
ユーザー Mopepe51Mopepe51
提出日時 2019-03-22 21:44:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 233 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,596 KB
最終ジャッジ日時 2024-09-19 04:03:02
合計ジャッジ時間 11,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,000 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 134 ms
18,788 KB
testcase_11 AC 122 ms
17,040 KB
testcase_12 AC 479 ms
38,480 KB
testcase_13 AC 346 ms
31,432 KB
testcase_14 AC 456 ms
37,148 KB
testcase_15 AC 496 ms
38,724 KB
testcase_16 AC 181 ms
21,084 KB
testcase_17 AC 425 ms
35,280 KB
testcase_18 AC 67 ms
13,312 KB
testcase_19 AC 143 ms
19,016 KB
testcase_20 AC 417 ms
35,288 KB
testcase_21 AC 242 ms
24,268 KB
testcase_22 AC 588 ms
45,596 KB
testcase_23 AC 585 ms
45,340 KB
testcase_24 AC 271 ms
28,452 KB
testcase_25 AC 398 ms
36,496 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
edges=[list(map(int,input().split())) for _ in range(N-1)]
f={}
for a,b in edges:
    f[a]=f.get(a,[])+[b]
    f[b]=f.get(b,[])+[a]
g=sorted([len(v) for v in f.values()])
r=0
for v in g[2:]:
    if v>2:r+=v-2
print(r)
0