結果

問題 No.45 回転寿司
ユーザー tachyon777tachyon777
提出日時 2020-02-13 13:38:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 190 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 65,624 KB
最終ジャッジ日時 2024-10-05 18:39:58
合計ジャッジ時間 2,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,568 KB
testcase_01 AC 35 ms
52,416 KB
testcase_02 AC 35 ms
53,080 KB
testcase_03 AC 34 ms
52,496 KB
testcase_04 AC 34 ms
53,056 KB
testcase_05 AC 35 ms
51,692 KB
testcase_06 AC 34 ms
52,616 KB
testcase_07 AC 33 ms
52,744 KB
testcase_08 AC 33 ms
54,024 KB
testcase_09 AC 34 ms
52,928 KB
testcase_10 AC 33 ms
52,072 KB
testcase_11 AC 33 ms
53,008 KB
testcase_12 AC 34 ms
53,156 KB
testcase_13 AC 33 ms
51,820 KB
testcase_14 AC 35 ms
51,696 KB
testcase_15 AC 34 ms
52,680 KB
testcase_16 AC 34 ms
52,628 KB
testcase_17 AC 33 ms
52,744 KB
testcase_18 AC 34 ms
52,516 KB
testcase_19 AC 36 ms
54,024 KB
testcase_20 AC 34 ms
53,552 KB
testcase_21 AC 34 ms
51,940 KB
testcase_22 AC 34 ms
52,148 KB
testcase_23 AC 35 ms
52,624 KB
testcase_24 AC 34 ms
53,168 KB
testcase_25 RE -
testcase_26 AC 35 ms
53,872 KB
testcase_27 AC 34 ms
53,008 KB
testcase_28 AC 32 ms
52,760 KB
testcase_29 AC 34 ms
52,604 KB
testcase_30 AC 35 ms
52,848 KB
testcase_31 AC 33 ms
52,244 KB
testcase_32 WA -
testcase_33 AC 34 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*n

dp[0] = lst1[0]
dp[1] = max(lst1[0],lst1[1])

for i in range(1,n):
    dp[i] = max(dp[i-1],dp[i-2]+lst1[i])

print(dp[-1])
0