結果

問題 No.806 木を道に
ユーザー roarisroaris
提出日時 2019-07-23 20:23:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-06-26 08:24:00
合計ジャッジ時間 7,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 130 ms
15,976 KB
testcase_11 AC 119 ms
14,196 KB
testcase_12 AC 425 ms
26,576 KB
testcase_13 AC 317 ms
22,736 KB
testcase_14 AC 409 ms
25,960 KB
testcase_15 AC 440 ms
26,692 KB
testcase_16 AC 168 ms
16,848 KB
testcase_17 AC 379 ms
24,860 KB
testcase_18 AC 66 ms
12,416 KB
testcase_19 AC 134 ms
15,788 KB
testcase_20 AC 377 ms
24,868 KB
testcase_21 AC 223 ms
18,532 KB
testcase_22 AC 514 ms
31,388 KB
testcase_23 AC 523 ms
31,400 KB
testcase_24 AC 246 ms
21,676 KB
testcase_25 AC 346 ms
25,652 KB
testcase_26 AC 155 ms
16,704 KB
testcase_27 AC 454 ms
32,660 KB
testcase_28 AC 42 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
adj_dict = defaultdict(list)

for _ in range(N-1):
    a_i, b_i = map(int, input().split())
    adj_dict[a_i].append(b_i)
    adj_dict[b_i].append(a_i)

degree1 = 0

for i in range(1, N+1):
    if len(adj_dict[i]) == 1:
        degree1 += 1

print(degree1 - 2)
0