結果

問題 No.806 木を道に
ユーザー NoneNone
提出日時 2021-03-13 20:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,788 KB
最終ジャッジ日時 2024-10-15 10:59:40
合計ジャッジ時間 4,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
51,456 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 94 ms
77,952 KB
testcase_11 AC 93 ms
77,824 KB
testcase_12 AC 165 ms
84,992 KB
testcase_13 AC 133 ms
81,968 KB
testcase_14 AC 159 ms
84,864 KB
testcase_15 AC 163 ms
84,992 KB
testcase_16 AC 98 ms
78,648 KB
testcase_17 AC 152 ms
84,596 KB
testcase_18 AC 90 ms
77,148 KB
testcase_19 AC 95 ms
77,696 KB
testcase_20 AC 150 ms
84,480 KB
testcase_21 AC 119 ms
80,908 KB
testcase_22 AC 186 ms
87,424 KB
testcase_23 AC 189 ms
87,424 KB
testcase_24 AC 105 ms
81,472 KB
testcase_25 AC 123 ms
84,224 KB
testcase_26 AC 91 ms
79,436 KB
testcase_27 AC 139 ms
88,788 KB
testcase_28 AC 68 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
edges=[[] for _ in range(N)]
for _ in range(N-1):
    a,b=map(int, input().split())
    edges[a-1].append(b-1)
    edges[b-1].append(a-1)

res=0
for edge in edges:
    res+=max(len(edge)-2,0)

print(res)
0