結果

問題 No.806 木を道に
ユーザー yansi819yansi819
提出日時 2024-05-12 20:59:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 84,216 KB
最終ジャッジ日時 2024-05-12 20:59:33
合計ジャッジ時間 4,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,188 KB
testcase_01 AC 37 ms
51,876 KB
testcase_02 AC 38 ms
53,756 KB
testcase_03 AC 37 ms
52,936 KB
testcase_04 AC 34 ms
52,380 KB
testcase_05 AC 37 ms
52,336 KB
testcase_06 AC 38 ms
53,536 KB
testcase_07 AC 36 ms
52,268 KB
testcase_08 AC 35 ms
53,372 KB
testcase_09 AC 36 ms
53,072 KB
testcase_10 AC 83 ms
78,464 KB
testcase_11 AC 82 ms
78,116 KB
testcase_12 AC 116 ms
83,716 KB
testcase_13 AC 107 ms
81,916 KB
testcase_14 AC 118 ms
83,916 KB
testcase_15 AC 117 ms
83,728 KB
testcase_16 AC 83 ms
79,544 KB
testcase_17 AC 113 ms
83,944 KB
testcase_18 AC 66 ms
74,856 KB
testcase_19 AC 79 ms
78,540 KB
testcase_20 AC 114 ms
83,568 KB
testcase_21 AC 96 ms
81,900 KB
testcase_22 AC 124 ms
84,092 KB
testcase_23 AC 126 ms
84,216 KB
testcase_24 AC 89 ms
81,676 KB
testcase_25 AC 104 ms
83,776 KB
testcase_26 AC 81 ms
79,944 KB
testcase_27 AC 115 ms
84,172 KB
testcase_28 AC 59 ms
70,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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