結果

問題 No.806 木を道に
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-23 09:04:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-09-21 21:35:16
合計ジャッジ時間 7,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 122 ms
14,976 KB
testcase_11 AC 110 ms
14,592 KB
testcase_12 AC 369 ms
27,904 KB
testcase_13 AC 279 ms
23,168 KB
testcase_14 AC 360 ms
27,136 KB
testcase_15 AC 378 ms
28,160 KB
testcase_16 AC 154 ms
16,896 KB
testcase_17 AC 332 ms
25,856 KB
testcase_18 AC 65 ms
12,160 KB
testcase_19 AC 124 ms
15,360 KB
testcase_20 AC 322 ms
25,856 KB
testcase_21 AC 202 ms
19,200 KB
testcase_22 AC 448 ms
31,104 KB
testcase_23 AC 451 ms
31,232 KB
testcase_24 AC 240 ms
21,376 KB
testcase_25 AC 343 ms
27,136 KB
testcase_26 AC 149 ms
16,896 KB
testcase_27 AC 435 ms
30,592 KB
testcase_28 AC 41 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
AB = [ list(map(int, input().split())) for _i in range(N-1)]

v = [0] * N

for a,b in AB:
    a,b = a-1, b-1
    v[a] += 1
    v[b] += 1

ans = 0

for i in range(N):
    if v[i] > 2:
        ans += v[i] - 2
print(ans)
0