結果

問題 No.1268 Fruit Rush 2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-17 07:20:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 201,344 KB
最終ジャッジ日時 2024-06-27 23:23:21
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,040 KB
testcase_01 AC 51 ms
55,424 KB
testcase_02 AC 51 ms
55,168 KB
testcase_03 AC 51 ms
54,912 KB
testcase_04 AC 50 ms
54,912 KB
testcase_05 AC 51 ms
55,040 KB
testcase_06 AC 49 ms
55,228 KB
testcase_07 AC 50 ms
55,424 KB
testcase_08 AC 50 ms
55,424 KB
testcase_09 AC 50 ms
55,296 KB
testcase_10 AC 50 ms
55,168 KB
testcase_11 AC 50 ms
55,424 KB
testcase_12 AC 50 ms
55,424 KB
testcase_13 AC 51 ms
55,296 KB
testcase_14 AC 48 ms
55,336 KB
testcase_15 AC 50 ms
54,912 KB
testcase_16 AC 202 ms
123,264 KB
testcase_17 AC 185 ms
117,248 KB
testcase_18 AC 185 ms
117,888 KB
testcase_19 AC 186 ms
117,504 KB
testcase_20 AC 186 ms
117,504 KB
testcase_21 AC 185 ms
117,228 KB
testcase_22 AC 197 ms
123,260 KB
testcase_23 AC 197 ms
123,176 KB
testcase_24 AC 185 ms
117,632 KB
testcase_25 AC 182 ms
117,120 KB
testcase_26 AC 325 ms
201,344 KB
testcase_27 AC 327 ms
201,212 KB
testcase_28 AC 325 ms
201,240 KB
testcase_29 AC 317 ms
201,072 KB
testcase_30 AC 319 ms
201,096 KB
testcase_31 AC 210 ms
142,072 KB
testcase_32 AC 215 ms
141,948 KB
testcase_33 AC 202 ms
170,352 KB
testcase_34 AC 184 ms
160,504 KB
testcase_35 AC 196 ms
170,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))

dp = defaultdict(lambda:0)
A.sort()
s = set(A)
for a in A:
    
    if a+1 in s:
        dp[a+1] += 1
    
    dp[a] += dp[a-2]
    
ans = N
for a in A:
    ans += dp[a]
print(ans)
    
    


0