結果

問題 No.806 木を道に
ユーザー 25__toma25__toma
提出日時 2019-03-24 04:36:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-09-25 09:46:55
合計ジャッジ時間 5,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 105 ms
14,464 KB
testcase_11 AC 99 ms
14,080 KB
testcase_12 AC 330 ms
25,344 KB
testcase_13 AC 243 ms
21,376 KB
testcase_14 AC 317 ms
24,576 KB
testcase_15 AC 331 ms
25,472 KB
testcase_16 AC 136 ms
16,128 KB
testcase_17 AC 293 ms
23,424 KB
testcase_18 AC 59 ms
12,032 KB
testcase_19 AC 110 ms
14,720 KB
testcase_20 AC 289 ms
23,680 KB
testcase_21 AC 176 ms
17,920 KB
testcase_22 AC 390 ms
27,904 KB
testcase_23 AC 394 ms
28,032 KB
testcase_24 AC 210 ms
19,712 KB
testcase_25 AC 308 ms
24,448 KB
testcase_26 AC 134 ms
15,872 KB
testcase_27 AC 385 ms
27,520 KB
testcase_28 AC 40 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
edges=[[int(j) for j in input().split()] for i in range(N-1)]

cnts=[0 for i in range(N+1)]
for edge in edges:
    cnts[edge[0]]+=1
    cnts[edge[1]]+=1

solo=0
for cnt in cnts:
    if cnt==1:
        solo+=1
print(solo-2)
0