結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 107 ms
14,464 KB
testcase_11 AC 98 ms
14,208 KB
testcase_12 AC 321 ms
25,344 KB
testcase_13 AC 241 ms
21,376 KB
testcase_14 AC 304 ms
24,576 KB
testcase_15 AC 326 ms
25,472 KB
testcase_16 AC 134 ms
16,000 KB
testcase_17 AC 281 ms
23,552 KB
testcase_18 AC 55 ms
11,904 KB
testcase_19 AC 108 ms
14,848 KB
testcase_20 AC 291 ms
23,552 KB
testcase_21 AC 174 ms
17,920 KB
testcase_22 AC 383 ms
28,160 KB
testcase_23 AC 363 ms
27,904 KB
testcase_24 AC 202 ms
19,968 KB
testcase_25 AC 296 ms
24,704 KB
testcase_26 AC 130 ms
16,000 KB
testcase_27 AC 369 ms
27,648 KB
testcase_28 AC 39 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