結果

問題 No.45 回転寿司
ユーザー neko
提出日時 2019-11-03 19:18:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 255 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-14 23:34:46
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 3
other RE * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N == 1:
    print(V.pop())
    exit()

else:
    ans = [0] * (N + 1)
    ans[1] = V[0]
    for i in range(2, N + 1):
        answers[i] = max(answers[i - 1], answers[i - 2] + V[i - 1])

print(ans[N])
0