結果

問題 No.806 木を道に
ユーザー ntudantuda
提出日時 2024-01-01 12:41:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 88,012 KB
最終ジャッジ日時 2024-09-27 17:23:18
合計ジャッジ時間 4,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,012 KB
testcase_01 AC 34 ms
52,872 KB
testcase_02 AC 34 ms
52,516 KB
testcase_03 AC 35 ms
52,548 KB
testcase_04 AC 37 ms
52,728 KB
testcase_05 AC 33 ms
52,896 KB
testcase_06 AC 33 ms
53,008 KB
testcase_07 AC 33 ms
52,200 KB
testcase_08 AC 33 ms
53,224 KB
testcase_09 AC 34 ms
52,804 KB
testcase_10 AC 78 ms
77,652 KB
testcase_11 AC 77 ms
77,368 KB
testcase_12 AC 118 ms
85,580 KB
testcase_13 AC 106 ms
83,296 KB
testcase_14 AC 116 ms
85,204 KB
testcase_15 AC 121 ms
85,444 KB
testcase_16 AC 84 ms
79,368 KB
testcase_17 AC 112 ms
83,428 KB
testcase_18 AC 70 ms
77,072 KB
testcase_19 AC 77 ms
77,720 KB
testcase_20 AC 110 ms
83,472 KB
testcase_21 AC 93 ms
81,164 KB
testcase_22 AC 130 ms
87,556 KB
testcase_23 AC 134 ms
87,344 KB
testcase_24 AC 98 ms
81,584 KB
testcase_25 AC 113 ms
85,500 KB
testcase_26 AC 83 ms
79,040 KB
testcase_27 AC 130 ms
88,012 KB
testcase_28 AC 62 ms
72,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
UV = [list(map(int, input().split())) for _ in range(N - 1)]
D = [0] * (N + 1)
for u, v in UV:
    D[u] += 1
    D[v] += 1
ans = 0
for i in range(1, N + 1):
    ans += max(D[i] - 2, 0)
print(ans)
0