結果

問題 No.45 回転寿司
ユーザー vwxyzvwxyz
提出日時 2021-06-19 17:25:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 835 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 91,896 KB
最終ジャッジ日時 2023-09-05 01:02:38
合計ジャッジ時間 10,757 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
91,620 KB
testcase_01 AC 247 ms
91,736 KB
testcase_02 AC 242 ms
91,680 KB
testcase_03 AC 248 ms
91,896 KB
testcase_04 AC 256 ms
91,332 KB
testcase_05 AC 243 ms
91,532 KB
testcase_06 AC 238 ms
91,448 KB
testcase_07 AC 244 ms
91,608 KB
testcase_08 AC 245 ms
91,620 KB
testcase_09 AC 246 ms
91,720 KB
testcase_10 AC 250 ms
91,476 KB
testcase_11 AC 248 ms
91,460 KB
testcase_12 AC 251 ms
91,536 KB
testcase_13 AC 246 ms
91,468 KB
testcase_14 AC 244 ms
91,532 KB
testcase_15 AC 247 ms
91,588 KB
testcase_16 AC 243 ms
91,628 KB
testcase_17 AC 242 ms
91,752 KB
testcase_18 AC 243 ms
91,428 KB
testcase_19 AC 243 ms
91,616 KB
testcase_20 AC 249 ms
91,640 KB
testcase_21 AC 250 ms
91,480 KB
testcase_22 AC 247 ms
91,624 KB
testcase_23 AC 243 ms
91,480 KB
testcase_24 AC 245 ms
91,500 KB
testcase_25 AC 247 ms
91,564 KB
testcase_26 AC 242 ms
91,704 KB
testcase_27 AC 240 ms
91,528 KB
testcase_28 AC 242 ms
91,444 KB
testcase_29 AC 250 ms
91,628 KB
testcase_30 AC 251 ms
91,676 KB
testcase_31 AC 252 ms
91,684 KB
testcase_32 AC 237 ms
91,460 KB
testcase_33 AC 242 ms
91,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
from collections import Counter, deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N=int(readline())
V=list(map(int,readline().split()))
dp=[-float('inf')]*(N+1)
dp[0]=0
dp[1]=V[0]
for i in range(2,N+1):
    dp[i]=max(dp[i-1],dp[i-2]+V[i-1])
ans=dp[N]
print(ans)
0