結果

問題 No.806 木を道に
ユーザー s_shoheis_shohei
提出日時 2020-08-02 15:11:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,788 KB
最終ジャッジ日時 2024-07-18 14:32:13
合計ジャッジ時間 4,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 36 ms
51,456 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 103 ms
78,848 KB
testcase_11 AC 101 ms
77,568 KB
testcase_12 AC 172 ms
85,376 KB
testcase_13 AC 148 ms
83,072 KB
testcase_14 AC 166 ms
84,864 KB
testcase_15 AC 171 ms
85,376 KB
testcase_16 AC 113 ms
79,616 KB
testcase_17 AC 161 ms
84,608 KB
testcase_18 AC 88 ms
77,056 KB
testcase_19 AC 104 ms
78,720 KB
testcase_20 AC 159 ms
84,352 KB
testcase_21 AC 132 ms
80,768 KB
testcase_22 AC 186 ms
87,040 KB
testcase_23 AC 187 ms
87,424 KB
testcase_24 AC 114 ms
81,024 KB
testcase_25 AC 146 ms
84,992 KB
testcase_26 AC 102 ms
80,384 KB
testcase_27 AC 157 ms
90,788 KB
testcase_28 AC 74 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
link = [[] for _ in range(n)]
for i in range(n-1):
    a,b = list(map(int,input().split()))
    link[a-1].append(b-1)
    link[b-1].append(a-1)

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

print(ans)
0