結果

問題 No.806 木を道に
ユーザー FromBooskaFromBooska
提出日時 2023-02-28 14:01:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-15 16:03:35
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,200 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 42 ms
51,456 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 40 ms
51,328 KB
testcase_08 AC 40 ms
51,456 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 91 ms
75,648 KB
testcase_11 AC 88 ms
76,160 KB
testcase_12 AC 124 ms
76,416 KB
testcase_13 AC 111 ms
76,544 KB
testcase_14 AC 119 ms
76,672 KB
testcase_15 AC 125 ms
76,672 KB
testcase_16 AC 94 ms
76,544 KB
testcase_17 AC 119 ms
76,800 KB
testcase_18 AC 79 ms
72,832 KB
testcase_19 AC 94 ms
76,032 KB
testcase_20 AC 117 ms
76,928 KB
testcase_21 AC 103 ms
76,800 KB
testcase_22 AC 133 ms
76,288 KB
testcase_23 AC 133 ms
76,800 KB
testcase_24 AC 103 ms
76,672 KB
testcase_25 AC 114 ms
76,160 KB
testcase_26 AC 95 ms
76,288 KB
testcase_27 AC 123 ms
77,696 KB
testcase_28 AC 73 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 次数が2を超える数の合計でいい
# 現状ではたとえば[1, 3, 4, 1, 1, 1, 1]
# 辺の数は不変、つまり次数合計は変わらない
# 道になれば次数は[1, 2, 2, 2, 2, 2, 1]となる
# つまり次数2超のところを次数1のところに付け替えていけばいい

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

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