結果

問題 No.1268 Fruit Rush 2
ユーザー stnkienstnkien
提出日時 2020-10-24 04:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 177,132 KB
最終ジャッジ日時 2024-07-21 14:53:37
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,768 KB
testcase_01 AC 43 ms
55,392 KB
testcase_02 AC 45 ms
54,300 KB
testcase_03 AC 42 ms
53,708 KB
testcase_04 AC 43 ms
54,508 KB
testcase_05 AC 42 ms
53,988 KB
testcase_06 AC 41 ms
55,480 KB
testcase_07 AC 41 ms
54,152 KB
testcase_08 AC 41 ms
53,636 KB
testcase_09 AC 42 ms
54,304 KB
testcase_10 AC 42 ms
54,312 KB
testcase_11 AC 41 ms
54,988 KB
testcase_12 AC 41 ms
54,412 KB
testcase_13 AC 41 ms
54,236 KB
testcase_14 AC 41 ms
54,376 KB
testcase_15 AC 42 ms
54,284 KB
testcase_16 AC 161 ms
109,676 KB
testcase_17 AC 146 ms
103,356 KB
testcase_18 AC 151 ms
106,196 KB
testcase_19 AC 152 ms
105,844 KB
testcase_20 AC 148 ms
103,904 KB
testcase_21 AC 148 ms
103,896 KB
testcase_22 AC 163 ms
109,196 KB
testcase_23 AC 161 ms
109,348 KB
testcase_24 AC 150 ms
106,292 KB
testcase_25 AC 148 ms
104,092 KB
testcase_26 AC 203 ms
136,484 KB
testcase_27 AC 204 ms
136,392 KB
testcase_28 AC 201 ms
136,296 KB
testcase_29 AC 202 ms
136,404 KB
testcase_30 AC 204 ms
136,592 KB
testcase_31 AC 187 ms
129,812 KB
testcase_32 AC 187 ms
130,784 KB
testcase_33 AC 158 ms
142,808 KB
testcase_34 AC 176 ms
163,552 KB
testcase_35 AC 185 ms
177,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N = int(input())
*A, = map(int, input().split())
A.sort()
dp = defaultdict(int)
for a in A:
    dp[a] += 1
    if a-1 in dp:
        dp[a+1] += dp[a-1]
print(sum(dp.values()))
0