結果

問題 No.45 回転寿司
ユーザー s_shoheis_shohei
提出日時 2020-06-13 13:36:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 60,292 KB
最終ジャッジ日時 2024-06-25 02:14:50
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,208 KB
testcase_01 AC 38 ms
57,728 KB
testcase_02 AC 40 ms
59,756 KB
testcase_03 AC 40 ms
59,628 KB
testcase_04 AC 40 ms
58,744 KB
testcase_05 AC 36 ms
53,820 KB
testcase_06 AC 38 ms
57,580 KB
testcase_07 AC 40 ms
59,172 KB
testcase_08 AC 38 ms
52,640 KB
testcase_09 AC 41 ms
59,108 KB
testcase_10 AC 41 ms
53,692 KB
testcase_11 AC 37 ms
53,288 KB
testcase_12 AC 41 ms
60,292 KB
testcase_13 AC 38 ms
53,824 KB
testcase_14 AC 37 ms
53,712 KB
testcase_15 AC 37 ms
54,152 KB
testcase_16 AC 37 ms
53,280 KB
testcase_17 AC 37 ms
52,888 KB
testcase_18 AC 38 ms
52,784 KB
testcase_19 AC 41 ms
59,952 KB
testcase_20 AC 36 ms
53,144 KB
testcase_21 AC 37 ms
52,376 KB
testcase_22 AC 36 ms
52,368 KB
testcase_23 AC 36 ms
53,160 KB
testcase_24 AC 36 ms
52,068 KB
testcase_25 AC 36 ms
53,224 KB
testcase_26 AC 37 ms
53,172 KB
testcase_27 AC 42 ms
58,960 KB
testcase_28 AC 38 ms
53,956 KB
testcase_29 AC 40 ms
58,456 KB
testcase_30 AC 40 ms
58,832 KB
testcase_31 AC 35 ms
52,464 KB
testcase_32 AC 36 ms
52,244 KB
testcase_33 AC 42 ms
60,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0 for _ in range(2)] for _ in range(n+1)]
for i in range(n):
    dp[i+1][1]=dp[i][0] + v[i] # eat
    dp[i+1][0]=max(dp[i][0],dp[i][1]) # pass

print(max(dp[-1]))
0