結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,820 KB
testcase_01 AC 34 ms
52,648 KB
testcase_02 AC 33 ms
52,684 KB
testcase_03 AC 32 ms
52,888 KB
testcase_04 AC 34 ms
52,772 KB
testcase_05 AC 34 ms
52,408 KB
testcase_06 AC 35 ms
52,976 KB
testcase_07 AC 35 ms
53,128 KB
testcase_08 AC 35 ms
52,348 KB
testcase_09 AC 35 ms
51,948 KB
testcase_10 AC 70 ms
76,664 KB
testcase_11 AC 66 ms
76,316 KB
testcase_12 AC 97 ms
76,752 KB
testcase_13 AC 88 ms
76,712 KB
testcase_14 AC 94 ms
76,912 KB
testcase_15 AC 97 ms
76,856 KB
testcase_16 AC 72 ms
76,612 KB
testcase_17 AC 86 ms
76,616 KB
testcase_18 AC 59 ms
73,272 KB
testcase_19 AC 71 ms
76,756 KB
testcase_20 AC 89 ms
76,620 KB
testcase_21 AC 76 ms
76,560 KB
testcase_22 AC 103 ms
77,156 KB
testcase_23 AC 101 ms
77,020 KB
testcase_24 AC 77 ms
76,644 KB
testcase_25 AC 89 ms
76,744 KB
testcase_26 AC 72 ms
76,516 KB
testcase_27 AC 98 ms
77,864 KB
testcase_28 AC 55 ms
68,592 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