結果

問題 No.806 木を道に
ユーザー mono1120mono1120
提出日時 2019-03-22 22:39:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,080 KB
最終ジャッジ日時 2024-09-19 06:05:13
合計ジャッジ時間 6,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 115 ms
13,208 KB
testcase_11 AC 110 ms
11,924 KB
testcase_12 AC 361 ms
16,600 KB
testcase_13 AC 271 ms
16,040 KB
testcase_14 AC 342 ms
16,548 KB
testcase_15 AC 362 ms
16,856 KB
testcase_16 AC 152 ms
13,204 KB
testcase_17 AC 326 ms
16,216 KB
testcase_18 AC 61 ms
11,264 KB
testcase_19 AC 122 ms
13,204 KB
testcase_20 AC 320 ms
16,216 KB
testcase_21 AC 192 ms
13,864 KB
testcase_22 AC 421 ms
21,080 KB
testcase_23 AC 425 ms
21,076 KB
testcase_24 AC 222 ms
15,912 KB
testcase_25 AC 314 ms
16,344 KB
testcase_26 AC 145 ms
13,204 KB
testcase_27 AC 402 ms
21,080 KB
testcase_28 AC 43 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
d = defaultdict(int)
for _ in range(N-1):
    a, b = [int(i) for i in input().split()]
    d[a] += 1
    d[b] += 1
ans = 0
val = list(d.values())
val.sort()
for i in val:
    if i == 1:
        ans += 1
    else:
        break
print(ans-2)
0