結果

問題 No.806 木を道に
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-22 22:51:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,756 KB
最終ジャッジ日時 2024-09-19 06:12:23
合計ジャッジ時間 3,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 35 ms
52,104 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 75 ms
76,160 KB
testcase_11 AC 73 ms
76,416 KB
testcase_12 AC 105 ms
76,288 KB
testcase_13 AC 93 ms
76,672 KB
testcase_14 AC 102 ms
76,672 KB
testcase_15 AC 104 ms
76,672 KB
testcase_16 AC 78 ms
76,416 KB
testcase_17 AC 106 ms
76,672 KB
testcase_18 AC 69 ms
72,576 KB
testcase_19 AC 75 ms
76,456 KB
testcase_20 AC 100 ms
76,288 KB
testcase_21 AC 83 ms
76,764 KB
testcase_22 AC 111 ms
76,800 KB
testcase_23 AC 111 ms
76,416 KB
testcase_24 AC 86 ms
76,544 KB
testcase_25 AC 96 ms
76,544 KB
testcase_26 AC 77 ms
76,416 KB
testcase_27 AC 107 ms
77,756 KB
testcase_28 AC 61 ms
68,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
deg = [0]*(n+1)
for i in range(n-1):
    a, b = map(int, input().split())
    deg[a] += 1
    deg[b] += 1
ans = 0
for i in range(1, n+1):
    if deg[i] > 2:
        ans += deg[i]-2
print(ans)
0