結果

問題 No.45 回転寿司
ユーザー dangodango
提出日時 2023-06-14 21:12:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 272 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 65,696 KB
最終ジャッジ日時 2024-06-23 03:13:41
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,732 KB
testcase_01 AC 35 ms
53,940 KB
testcase_02 AC 32 ms
53,568 KB
testcase_03 AC 34 ms
53,396 KB
testcase_04 AC 33 ms
53,348 KB
testcase_05 AC 33 ms
53,040 KB
testcase_06 AC 33 ms
52,700 KB
testcase_07 AC 35 ms
54,336 KB
testcase_08 AC 35 ms
53,136 KB
testcase_09 AC 34 ms
52,752 KB
testcase_10 AC 34 ms
52,460 KB
testcase_11 AC 35 ms
52,188 KB
testcase_12 AC 33 ms
52,596 KB
testcase_13 AC 33 ms
53,764 KB
testcase_14 AC 34 ms
52,804 KB
testcase_15 AC 33 ms
52,672 KB
testcase_16 AC 34 ms
52,436 KB
testcase_17 AC 33 ms
53,096 KB
testcase_18 AC 33 ms
52,748 KB
testcase_19 AC 33 ms
53,020 KB
testcase_20 AC 33 ms
52,140 KB
testcase_21 AC 33 ms
53,288 KB
testcase_22 AC 32 ms
53,668 KB
testcase_23 AC 33 ms
53,944 KB
testcase_24 AC 33 ms
53,020 KB
testcase_25 RE -
testcase_26 AC 34 ms
54,236 KB
testcase_27 AC 33 ms
52,400 KB
testcase_28 AC 34 ms
53,740 KB
testcase_29 AC 34 ms
53,796 KB
testcase_30 AC 33 ms
53,424 KB
testcase_31 AC 33 ms
52,952 KB
testcase_32 AC 32 ms
52,572 KB
testcase_33 AC 32 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def max_taste(N: int, V: list) -> int:
    dp = [0] * N
    dp[0] = V[0]
    dp[1] = max(V[0], V[1])
    for i in range(2, N):
        dp[i] = max(dp[i - 1], dp[i - 2] + V[i])
    return dp[N - 1]
N = int(input())
V = list(map(int, input().split()))
print(max_taste(N, V))
0