結果

問題 No.806 木を道に
ユーザー kamojirokamojiro
提出日時 2019-03-22 22:26:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-09-19 05:56:05
合計ジャッジ時間 6,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 117 ms
14,208 KB
testcase_11 AC 103 ms
14,080 KB
testcase_12 AC 382 ms
24,704 KB
testcase_13 AC 281 ms
20,864 KB
testcase_14 AC 368 ms
23,936 KB
testcase_15 AC 383 ms
24,832 KB
testcase_16 AC 152 ms
15,744 KB
testcase_17 AC 318 ms
22,912 KB
testcase_18 AC 60 ms
12,032 KB
testcase_19 AC 119 ms
14,336 KB
testcase_20 AC 327 ms
22,912 KB
testcase_21 AC 202 ms
17,536 KB
testcase_22 AC 478 ms
27,264 KB
testcase_23 AC 446 ms
27,264 KB
testcase_24 AC 224 ms
19,456 KB
testcase_25 AC 331 ms
23,808 KB
testcase_26 AC 136 ms
15,872 KB
testcase_27 AC 399 ms
27,520 KB
testcase_28 AC 38 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int( input())
E = [ [] for _ in range(N)]
for _ in range(N-1):
    a, b = map( int, input().split())
    a, b = a-1, b-1
    E[a].append(b)
    E[b].append(a)
ans = 0
for i in range(N):
    if len(E[i]) == 1:
        continue
    ans += len(E[i])-2
print(ans)
0