結果

問題 No.806 木を道に
ユーザー dangodango
提出日時 2023-07-14 18:55:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-09-16 03:51:23
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,432 KB
testcase_01 AC 62 ms
66,944 KB
testcase_02 AC 62 ms
67,072 KB
testcase_03 AC 61 ms
66,944 KB
testcase_04 AC 59 ms
66,432 KB
testcase_05 AC 63 ms
67,328 KB
testcase_06 AC 62 ms
67,072 KB
testcase_07 AC 61 ms
67,328 KB
testcase_08 AC 61 ms
66,688 KB
testcase_09 AC 60 ms
66,432 KB
testcase_10 AC 112 ms
80,640 KB
testcase_11 AC 113 ms
80,872 KB
testcase_12 AC 166 ms
87,012 KB
testcase_13 AC 144 ms
84,736 KB
testcase_14 AC 160 ms
86,784 KB
testcase_15 AC 166 ms
86,784 KB
testcase_16 AC 123 ms
81,104 KB
testcase_17 AC 160 ms
86,948 KB
testcase_18 AC 105 ms
78,764 KB
testcase_19 AC 116 ms
80,640 KB
testcase_20 AC 161 ms
86,760 KB
testcase_21 AC 136 ms
82,680 KB
testcase_22 AC 184 ms
88,576 KB
testcase_23 AC 180 ms
88,704 KB
testcase_24 AC 140 ms
84,988 KB
testcase_25 AC 161 ms
86,784 KB
testcase_26 AC 117 ms
81,168 KB
testcase_27 AC 179 ms
88,832 KB
testcase_28 AC 99 ms
79,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List
def main():
    n = int(input().strip())
    abi = [list(map(int, input().strip().split())) for _ in range(n - 1)]
    deg = [0] * (n + 1)
    for ab in abi:
        deg[ab[0]] += 1
        deg[ab[1]] += 1
    ans = 0
    for i in range(1, n + 1):
        ans += max(0, deg[i] - 2)
    print(ans)
main()
0