結果

問題 No.806 木を道に
ユーザー hedwig100hedwig100
提出日時 2020-04-22 22:17:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-10-12 06:24:16
合計ジャッジ時間 6,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 120 ms
14,464 KB
testcase_11 AC 115 ms
13,824 KB
testcase_12 AC 397 ms
24,704 KB
testcase_13 AC 293 ms
20,992 KB
testcase_14 AC 377 ms
24,064 KB
testcase_15 AC 401 ms
24,832 KB
testcase_16 AC 162 ms
15,872 KB
testcase_17 AC 345 ms
22,912 KB
testcase_18 AC 64 ms
11,904 KB
testcase_19 AC 124 ms
14,592 KB
testcase_20 AC 357 ms
23,040 KB
testcase_21 AC 203 ms
17,536 KB
testcase_22 AC 472 ms
27,264 KB
testcase_23 AC 470 ms
27,136 KB
testcase_24 AC 231 ms
19,456 KB
testcase_25 AC 333 ms
23,936 KB
testcase_26 AC 144 ms
15,872 KB
testcase_27 AC 407 ms
27,520 KB
testcase_28 AC 41 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
G = [[] for _ in range(n)]
for _ in range(n - 1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

ans = 0
for i in range(n):
    if len(G[i]) >= 3:
        ans += len(G[i]) - 2
print(ans)
0