結果
問題 | No.45 回転寿司 |
ユーザー | vwxyz |
提出日時 | 2021-06-19 17:25:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 145 ms / 5,000 ms |
コード長 | 835 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,504 KB |
実行使用メモリ | 90,220 KB |
最終ジャッジ日時 | 2024-06-22 22:11:35 |
合計ジャッジ時間 | 5,938 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
89,928 KB |
testcase_01 | AC | 134 ms
89,904 KB |
testcase_02 | AC | 134 ms
89,984 KB |
testcase_03 | AC | 135 ms
89,856 KB |
testcase_04 | AC | 134 ms
89,984 KB |
testcase_05 | AC | 141 ms
89,984 KB |
testcase_06 | AC | 136 ms
89,856 KB |
testcase_07 | AC | 134 ms
90,020 KB |
testcase_08 | AC | 134 ms
90,112 KB |
testcase_09 | AC | 134 ms
89,796 KB |
testcase_10 | AC | 138 ms
89,984 KB |
testcase_11 | AC | 144 ms
90,112 KB |
testcase_12 | AC | 145 ms
89,856 KB |
testcase_13 | AC | 138 ms
89,984 KB |
testcase_14 | AC | 134 ms
89,848 KB |
testcase_15 | AC | 134 ms
89,856 KB |
testcase_16 | AC | 135 ms
89,856 KB |
testcase_17 | AC | 133 ms
89,856 KB |
testcase_18 | AC | 135 ms
89,728 KB |
testcase_19 | AC | 137 ms
89,916 KB |
testcase_20 | AC | 133 ms
89,832 KB |
testcase_21 | AC | 134 ms
89,984 KB |
testcase_22 | AC | 133 ms
89,856 KB |
testcase_23 | AC | 133 ms
89,856 KB |
testcase_24 | AC | 134 ms
90,112 KB |
testcase_25 | AC | 131 ms
90,068 KB |
testcase_26 | AC | 135 ms
89,600 KB |
testcase_27 | AC | 136 ms
89,856 KB |
testcase_28 | AC | 138 ms
90,076 KB |
testcase_29 | AC | 130 ms
90,220 KB |
testcase_30 | AC | 134 ms
89,856 KB |
testcase_31 | AC | 128 ms
89,984 KB |
testcase_32 | AC | 129 ms
89,796 KB |
testcase_33 | AC | 135 ms
90,112 KB |
ソースコード
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)