結果

問題 No.806 木を道に
ユーザー lumeffluxlumefflux
提出日時 2019-03-23 01:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,776 KB
最終ジャッジ日時 2024-09-19 08:46:56
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 34 ms
52,124 KB
testcase_02 AC 35 ms
53,152 KB
testcase_03 AC 35 ms
53,492 KB
testcase_04 AC 35 ms
52,152 KB
testcase_05 AC 32 ms
53,196 KB
testcase_06 AC 33 ms
53,944 KB
testcase_07 AC 32 ms
52,680 KB
testcase_08 AC 33 ms
52,684 KB
testcase_09 AC 35 ms
53,552 KB
testcase_10 AC 70 ms
76,024 KB
testcase_11 AC 68 ms
76,196 KB
testcase_12 AC 102 ms
76,840 KB
testcase_13 AC 89 ms
76,576 KB
testcase_14 AC 99 ms
76,732 KB
testcase_15 AC 99 ms
76,920 KB
testcase_16 AC 78 ms
76,340 KB
testcase_17 AC 98 ms
76,772 KB
testcase_18 AC 61 ms
72,848 KB
testcase_19 AC 76 ms
76,160 KB
testcase_20 AC 95 ms
77,040 KB
testcase_21 AC 79 ms
76,724 KB
testcase_22 AC 114 ms
76,812 KB
testcase_23 AC 111 ms
76,820 KB
testcase_24 AC 81 ms
76,396 KB
testcase_25 AC 96 ms
76,640 KB
testcase_26 AC 75 ms
76,344 KB
testcase_27 AC 104 ms
77,776 KB
testcase_28 AC 58 ms
69,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cnt = [0] * (N + 1)
for _ in range(N - 1):
    a, b = map(int, input().split())
    cnt[a] += 1
    cnt[b] += 1
ans = 0
for c in cnt:
    ans += max(c - 2, 0)
print(ans)
0