結果

問題 No.806 木を道に
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-11 18:33:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,600 KB
最終ジャッジ日時 2024-07-02 01:16:38
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 142 ms
19,124 KB
testcase_11 AC 128 ms
17,572 KB
testcase_12 AC 477 ms
40,792 KB
testcase_13 AC 352 ms
33,340 KB
testcase_14 AC 462 ms
39,512 KB
testcase_15 AC 487 ms
41,436 KB
testcase_16 AC 184 ms
22,068 KB
testcase_17 AC 421 ms
37,464 KB
testcase_18 AC 69 ms
13,696 KB
testcase_19 AC 149 ms
19,560 KB
testcase_20 AC 425 ms
37,464 KB
testcase_21 AC 239 ms
25,524 KB
testcase_22 AC 587 ms
48,416 KB
testcase_23 AC 588 ms
48,284 KB
testcase_24 AC 263 ms
29,748 KB
testcase_25 AC 382 ms
38,612 KB
testcase_26 AC 162 ms
23,988 KB
testcase_27 AC 480 ms
53,600 KB
testcase_28 AC 42 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

buff = {}
for n in range(1, N+1):
    buff[n] = set()

for n in range(N-1):
    a, b = map(int, input().split())
    buff[a].add(b)
    buff[b].add(a)

change_num = 0
for key, vals in buff.items():
    if len(vals) >= 2:
        change_num += len(vals) - 2

#print(buff)
print(change_num)
0