結果

問題 No.45 回転寿司
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-09-24 15:23:31
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,616 KB
testcase_01 AC 35 ms
53,164 KB
testcase_02 AC 34 ms
54,624 KB
testcase_03 AC 36 ms
54,184 KB
testcase_04 AC 35 ms
54,340 KB
testcase_05 AC 32 ms
53,724 KB
testcase_06 AC 34 ms
53,068 KB
testcase_07 AC 34 ms
53,820 KB
testcase_08 AC 37 ms
53,380 KB
testcase_09 AC 36 ms
54,660 KB
testcase_10 AC 36 ms
53,748 KB
testcase_11 AC 34 ms
53,668 KB
testcase_12 AC 35 ms
54,308 KB
testcase_13 AC 33 ms
52,636 KB
testcase_14 AC 35 ms
53,196 KB
testcase_15 AC 35 ms
53,672 KB
testcase_16 AC 34 ms
53,072 KB
testcase_17 AC 34 ms
53,356 KB
testcase_18 AC 39 ms
52,988 KB
testcase_19 AC 36 ms
52,908 KB
testcase_20 AC 33 ms
53,036 KB
testcase_21 AC 35 ms
53,288 KB
testcase_22 AC 36 ms
52,476 KB
testcase_23 AC 34 ms
53,004 KB
testcase_24 AC 33 ms
52,092 KB
testcase_25 AC 33 ms
53,540 KB
testcase_26 AC 32 ms
52,980 KB
testcase_27 AC 33 ms
54,092 KB
testcase_28 AC 34 ms
53,752 KB
testcase_29 AC 34 ms
53,320 KB
testcase_30 AC 34 ms
54,276 KB
testcase_31 AC 34 ms
52,068 KB
testcase_32 AC 32 ms
52,980 KB
testcase_33 AC 35 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=[[-float('INF')]*2 for _ in range(n+1)]
dp[0][0]=0
for i in range(n):
    dp[i+1][1]=max(dp[i][0]+V[i],dp[i][1])
    dp[i+1][0]=max(dp[i][0],dp[i][1])

print(max(dp[n]))
0