結果

問題 No.1268 Fruit Rush 2
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-04 14:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 265,356 KB
最終ジャッジ日時 2024-06-11 10:11:49
合計ジャッジ時間 8,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 39 ms
53,632 KB
testcase_09 AC 40 ms
53,632 KB
testcase_10 AC 40 ms
53,632 KB
testcase_11 AC 40 ms
53,632 KB
testcase_12 AC 39 ms
53,376 KB
testcase_13 AC 39 ms
53,376 KB
testcase_14 AC 40 ms
53,632 KB
testcase_15 AC 39 ms
53,504 KB
testcase_16 AC 199 ms
157,696 KB
testcase_17 AC 185 ms
148,480 KB
testcase_18 AC 191 ms
149,632 KB
testcase_19 AC 196 ms
149,096 KB
testcase_20 AC 208 ms
149,376 KB
testcase_21 AC 198 ms
148,608 KB
testcase_22 AC 203 ms
157,824 KB
testcase_23 AC 205 ms
157,696 KB
testcase_24 AC 195 ms
149,228 KB
testcase_25 AC 186 ms
148,608 KB
testcase_26 AC 382 ms
260,384 KB
testcase_27 AC 387 ms
259,664 KB
testcase_28 AC 419 ms
259,848 KB
testcase_29 AC 383 ms
259,924 KB
testcase_30 AC 391 ms
259,676 KB
testcase_31 AC 230 ms
174,660 KB
testcase_32 AC 236 ms
174,584 KB
testcase_33 AC 203 ms
202,400 KB
testcase_34 AC 249 ms
246,484 KB
testcase_35 AC 322 ms
265,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
from collections import defaultdict
B = set()
for a in A:
    B.add(a)
    B.add(a+1)
B = list(B)
B.sort()
A = set(A)
dp = defaultdict(lambda: 0)
for b in B:
    if b in A:
        dp[b] = 1
    if b-1 in A:
        if b-2 >= 0:
            dp[b] += dp[b-2]
ans = 0
for k, v in dp.items():
    ans += v
print(ans)
0