結果

問題 No.1268 Fruit Rush 2
ユーザー roarisroaris
提出日時 2020-11-14 15:06:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 265,432 KB
最終ジャッジ日時 2024-07-22 22:56:43
合計ジャッジ時間 8,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 45 ms
53,376 KB
testcase_09 AC 44 ms
53,376 KB
testcase_10 AC 44 ms
53,504 KB
testcase_11 AC 44 ms
53,632 KB
testcase_12 AC 43 ms
53,248 KB
testcase_13 AC 43 ms
53,504 KB
testcase_14 AC 43 ms
53,248 KB
testcase_15 AC 44 ms
53,376 KB
testcase_16 AC 211 ms
161,664 KB
testcase_17 AC 198 ms
151,936 KB
testcase_18 AC 202 ms
153,088 KB
testcase_19 AC 202 ms
152,704 KB
testcase_20 AC 202 ms
153,088 KB
testcase_21 AC 201 ms
151,936 KB
testcase_22 AC 211 ms
161,792 KB
testcase_23 AC 212 ms
161,920 KB
testcase_24 AC 201 ms
152,960 KB
testcase_25 AC 198 ms
152,448 KB
testcase_26 AC 442 ms
256,556 KB
testcase_27 AC 422 ms
256,260 KB
testcase_28 AC 432 ms
256,400 KB
testcase_29 AC 433 ms
256,560 KB
testcase_30 AC 440 ms
256,120 KB
testcase_31 AC 227 ms
180,940 KB
testcase_32 AC 230 ms
180,424 KB
testcase_33 AC 216 ms
210,444 KB
testcase_34 AC 265 ms
225,016 KB
testcase_35 AC 280 ms
265,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
A = list(map(int, input().split()))
A.sort()
s = set(A)
check = A+[Ai+1 for Ai in A]
check = list(set(check))
check.sort()
dp = defaultdict(int)

for c in check:
    if c in s:
        dp[c] = 1
    
    if c-1 in s:
        dp[c] += dp[c-2]

print(sum(dp.values()))
0