結果

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

ソースコード

diff #

n=int(input())
arr=list(map(int,input().split()))
dp=[0]*(n+1)
dp[1]=arr[0]
for i in range(2,n+1):
    limit=0
    for j in range(1,i):
        tmp=dp[i-j-1]+arr[i-j]
        if limit<tmp:
            limit=tmp
    dp[i]=limit
print(dp[n])
0