結果

問題 No.1268 Fruit Rush 2
ユーザー nebukuro09nebukuro09
提出日時 2020-10-23 23:42:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 203,660 KB
最終ジャッジ日時 2024-07-21 13:44:30
合計ジャッジ時間 5,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,876 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 39 ms
52,636 KB
testcase_03 AC 37 ms
53,088 KB
testcase_04 AC 37 ms
53,052 KB
testcase_05 AC 36 ms
52,204 KB
testcase_06 AC 36 ms
51,900 KB
testcase_07 AC 37 ms
52,072 KB
testcase_08 AC 36 ms
52,700 KB
testcase_09 AC 37 ms
52,944 KB
testcase_10 AC 36 ms
52,380 KB
testcase_11 AC 38 ms
52,196 KB
testcase_12 AC 38 ms
52,744 KB
testcase_13 AC 36 ms
53,080 KB
testcase_14 AC 37 ms
51,984 KB
testcase_15 AC 36 ms
51,992 KB
testcase_16 AC 157 ms
133,492 KB
testcase_17 AC 151 ms
145,632 KB
testcase_18 AC 151 ms
143,632 KB
testcase_19 AC 151 ms
143,340 KB
testcase_20 AC 152 ms
146,576 KB
testcase_21 AC 152 ms
145,772 KB
testcase_22 AC 155 ms
129,292 KB
testcase_23 AC 156 ms
133,168 KB
testcase_24 AC 146 ms
138,776 KB
testcase_25 AC 154 ms
145,924 KB
testcase_26 AC 211 ms
164,784 KB
testcase_27 AC 206 ms
164,228 KB
testcase_28 AC 207 ms
164,408 KB
testcase_29 AC 206 ms
164,376 KB
testcase_30 AC 212 ms
164,460 KB
testcase_31 AC 180 ms
140,696 KB
testcase_32 AC 176 ms
140,360 KB
testcase_33 AC 163 ms
169,648 KB
testcase_34 AC 163 ms
148,296 KB
testcase_35 AC 185 ms
203,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(sorted(map(int, input().split())))
B = set(A)

dp = {}
ans = 0

for a in A:
    if a in dp:
        dp[a] += 1
    else:
        dp[a] = 1
    if a - 1 in dp:
        if a + 1 in dp:
            dp[a + 1] += dp[a - 1]
        else:
            dp[a + 1] = dp[a - 1]

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