結果

問題 No.806 木を道に
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-03 15:31:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 88,732 KB
最終ジャッジ日時 2024-07-22 06:10:57
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 98 ms
78,004 KB
testcase_11 AC 96 ms
77,568 KB
testcase_12 AC 174 ms
85,632 KB
testcase_13 AC 143 ms
82,688 KB
testcase_14 AC 168 ms
85,672 KB
testcase_15 AC 178 ms
85,632 KB
testcase_16 AC 107 ms
78,720 KB
testcase_17 AC 159 ms
84,736 KB
testcase_18 AC 87 ms
76,928 KB
testcase_19 AC 97 ms
78,336 KB
testcase_20 AC 160 ms
84,736 KB
testcase_21 AC 121 ms
81,280 KB
testcase_22 AC 195 ms
88,064 KB
testcase_23 AC 199 ms
88,156 KB
testcase_24 AC 109 ms
81,620 KB
testcase_25 AC 127 ms
85,056 KB
testcase_26 AC 92 ms
79,616 KB
testcase_27 AC 142 ms
88,732 KB
testcase_28 AC 68 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for i in range(n)]
ind = [0]*n
for i in range(n-1):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    g[a].append(b)
    g[b].append(a)
    ind[a] += 1
    ind[b] += 1

ans = 0
for i in range(n):
    ans += max(0, ind[i]-2)
print(ans)
0