結果

問題 No.806 木を道に
ユーザー Mopepe51Mopepe51
提出日時 2019-03-22 21:45:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 233 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 280,776 KB
最終ジャッジ日時 2024-09-19 04:03:29
合計ジャッジ時間 8,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,608 KB
testcase_01 AC 34 ms
52,808 KB
testcase_02 AC 34 ms
54,024 KB
testcase_03 AC 33 ms
52,132 KB
testcase_04 AC 33 ms
51,824 KB
testcase_05 AC 33 ms
52,892 KB
testcase_06 AC 34 ms
52,868 KB
testcase_07 AC 35 ms
52,828 KB
testcase_08 AC 33 ms
53,508 KB
testcase_09 AC 33 ms
52,824 KB
testcase_10 AC 95 ms
82,052 KB
testcase_11 AC 105 ms
81,464 KB
testcase_12 AC 195 ms
103,524 KB
testcase_13 AC 141 ms
93,392 KB
testcase_14 AC 184 ms
104,060 KB
testcase_15 AC 197 ms
101,852 KB
testcase_16 AC 106 ms
83,284 KB
testcase_17 AC 166 ms
97,692 KB
testcase_18 AC 83 ms
77,632 KB
testcase_19 AC 98 ms
82,268 KB
testcase_20 AC 160 ms
97,568 KB
testcase_21 AC 119 ms
87,508 KB
testcase_22 AC 207 ms
108,420 KB
testcase_23 AC 208 ms
108,056 KB
testcase_24 AC 118 ms
91,940 KB
testcase_25 AC 136 ms
98,068 KB
testcase_26 AC 1,347 ms
265,948 KB
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