結果

問題 No.1268 Fruit Rush 2
ユーザー 👑 KazunKazun
提出日時 2020-10-23 22:28:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 168,168 KB
最終ジャッジ日時 2024-07-21 11:15:17
合計ジャッジ時間 6,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

Memo={}
def f(x):
    if x in Memo:
        return Memo[x]

    k=0
    y=x
    while y+2 in B:
        k+=1
        y+=2

    for i in range(k+1):
        Memo[y]=i
        y-=2

    return Memo[x]

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

X=N
for a in A:
    if a+1 in B:
        X+=1
    else:
        continue

    X+=f(a+1)

print(X)
0