結果

問題 No.806 木を道に
ユーザー H20H20
提出日時 2021-04-23 11:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,984 KB
最終ジャッジ日時 2024-07-04 06:59:34
合計ジャッジ時間 4,205 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 39 ms
51,456 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 81 ms
76,544 KB
testcase_11 AC 78 ms
76,596 KB
testcase_12 AC 110 ms
76,800 KB
testcase_13 AC 98 ms
76,544 KB
testcase_14 AC 107 ms
76,672 KB
testcase_15 AC 110 ms
76,800 KB
testcase_16 AC 83 ms
76,288 KB
testcase_17 AC 106 ms
77,048 KB
testcase_18 AC 70 ms
73,344 KB
testcase_19 AC 83 ms
76,336 KB
testcase_20 AC 108 ms
76,868 KB
testcase_21 AC 90 ms
76,800 KB
testcase_22 AC 119 ms
76,800 KB
testcase_23 AC 121 ms
76,880 KB
testcase_24 AC 91 ms
76,672 KB
testcase_25 AC 99 ms
76,800 KB
testcase_26 AC 84 ms
76,416 KB
testcase_27 AC 111 ms
77,984 KB
testcase_28 AC 66 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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