結果

問題 No.806 木を道に
ユーザー FromBooskaFromBooska
提出日時 2023-02-28 13:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,752 KB
最終ジャッジ日時 2024-09-15 16:00:54
合計ジャッジ時間 4,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 99 ms
77,952 KB
testcase_11 AC 96 ms
77,872 KB
testcase_12 AC 172 ms
85,764 KB
testcase_13 AC 141 ms
82,388 KB
testcase_14 AC 164 ms
85,376 KB
testcase_15 AC 186 ms
85,888 KB
testcase_16 AC 115 ms
78,336 KB
testcase_17 AC 174 ms
84,864 KB
testcase_18 AC 101 ms
77,184 KB
testcase_19 AC 111 ms
78,208 KB
testcase_20 AC 174 ms
84,864 KB
testcase_21 AC 134 ms
80,896 KB
testcase_22 AC 208 ms
88,064 KB
testcase_23 AC 206 ms
87,936 KB
testcase_24 AC 121 ms
81,536 KB
testcase_25 AC 141 ms
85,120 KB
testcase_26 AC 106 ms
79,104 KB
testcase_27 AC 157 ms
89,752 KB
testcase_28 AC 79 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 次数が2を超える数の合計でいいのか?

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

ans = 0
for i in range(1, N+1):
    ans += max(0, degree[i]-2)
print(ans)
0