結果

問題 No.45 回転寿司
ユーザー tachyon777tachyon777
提出日時 2020-02-13 13:41:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 53,848 KB
最終ジャッジ日時 2024-10-05 18:47:46
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,564 KB
testcase_01 AC 34 ms
53,848 KB
testcase_02 AC 34 ms
53,396 KB
testcase_03 AC 33 ms
52,616 KB
testcase_04 AC 35 ms
53,164 KB
testcase_05 AC 35 ms
53,380 KB
testcase_06 AC 33 ms
52,564 KB
testcase_07 AC 35 ms
52,696 KB
testcase_08 AC 34 ms
52,432 KB
testcase_09 AC 34 ms
52,888 KB
testcase_10 AC 38 ms
52,836 KB
testcase_11 AC 33 ms
52,632 KB
testcase_12 AC 35 ms
52,536 KB
testcase_13 AC 34 ms
52,124 KB
testcase_14 AC 33 ms
53,312 KB
testcase_15 AC 35 ms
52,392 KB
testcase_16 AC 34 ms
51,808 KB
testcase_17 AC 36 ms
53,148 KB
testcase_18 AC 34 ms
52,424 KB
testcase_19 AC 35 ms
53,404 KB
testcase_20 AC 35 ms
52,736 KB
testcase_21 AC 33 ms
52,076 KB
testcase_22 AC 35 ms
52,272 KB
testcase_23 AC 33 ms
53,088 KB
testcase_24 AC 32 ms
52,800 KB
testcase_25 AC 35 ms
53,496 KB
testcase_26 AC 35 ms
52,480 KB
testcase_27 AC 35 ms
52,884 KB
testcase_28 AC 35 ms
52,404 KB
testcase_29 AC 35 ms
53,360 KB
testcase_30 AC 34 ms
52,760 KB
testcase_31 AC 34 ms
52,332 KB
testcase_32 AC 35 ms
53,848 KB
testcase_33 AC 34 ms
53,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*n
dp[0] = lst1[0]
if n == 1:
    print(dp[-1])
    exit()
dp[1] = max(lst1[0],lst1[1])
if n == 2:
    print(dp[-1])
    exit()

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

print(dp[-1])
0