結果

問題 No.806 木を道に
ユーザー tobusakanatobusakana
提出日時 2022-11-27 15:51:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 88,648 KB
最終ジャッジ日時 2024-10-04 04:55:30
合計ジャッジ時間 4,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 93 ms
77,824 KB
testcase_11 AC 89 ms
77,824 KB
testcase_12 AC 165 ms
84,736 KB
testcase_13 AC 134 ms
82,048 KB
testcase_14 AC 162 ms
84,864 KB
testcase_15 AC 166 ms
85,376 KB
testcase_16 AC 99 ms
78,208 KB
testcase_17 AC 155 ms
84,388 KB
testcase_18 AC 82 ms
77,312 KB
testcase_19 AC 93 ms
78,208 KB
testcase_20 AC 154 ms
84,096 KB
testcase_21 AC 119 ms
80,896 KB
testcase_22 AC 188 ms
87,040 KB
testcase_23 AC 186 ms
87,296 KB
testcase_24 AC 102 ms
81,116 KB
testcase_25 AC 120 ms
84,480 KB
testcase_26 AC 88 ms
79,488 KB
testcase_27 AC 138 ms
88,648 KB
testcase_28 AC 63 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for i in range(N)]
for _ in range(N - 1):
    a,b = map(int,input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
    
ans = 0
for v in range(N):
    if len(G[v]) >= 3:
       ans += len(G[v]) - 2
       
print(ans)
0