結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 115 ms
13,192 KB
testcase_11 AC 102 ms
11,916 KB
testcase_12 AC 349 ms
15,944 KB
testcase_13 AC 257 ms
15,908 KB
testcase_14 AC 334 ms
16,032 KB
testcase_15 AC 356 ms
16,064 KB
testcase_16 AC 146 ms
13,328 KB
testcase_17 AC 311 ms
15,912 KB
testcase_18 AC 60 ms
11,264 KB
testcase_19 AC 116 ms
13,324 KB
testcase_20 AC 308 ms
16,036 KB
testcase_21 AC 191 ms
13,216 KB
testcase_22 AC 413 ms
21,120 KB
testcase_23 AC 416 ms
21,076 KB
testcase_24 AC 222 ms
15,900 KB
testcase_25 AC 315 ms
15,904 KB
testcase_26 AC 142 ms
13,192 KB
testcase_27 AC 385 ms
21,068 KB
testcase_28 AC 39 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

D = {}
for i in range(N-1) :
    a,b = map(int,input().split())
    if a not in D :
        D[a] = 1
    else :
        D[a] += 1
    if b not in D :
        D[b] = 1
    else :
        D[b] += 1

ans = 0
for i in D.values() :
    if i >= 3 :
        ans += i - 2
print(ans)
0