結果

問題 No.45 回転寿司
ユーザー nmoonnmoon
提出日時 2024-09-09 18:41:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 129 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-09-09 18:41:13
合計ジャッジ時間 2,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,428 KB
testcase_01 AC 38 ms
53,184 KB
testcase_02 AC 39 ms
52,768 KB
testcase_03 AC 38 ms
53,996 KB
testcase_04 AC 36 ms
52,204 KB
testcase_05 AC 36 ms
51,876 KB
testcase_06 AC 37 ms
52,600 KB
testcase_07 AC 36 ms
52,708 KB
testcase_08 AC 40 ms
52,216 KB
testcase_09 AC 38 ms
52,696 KB
testcase_10 AC 37 ms
52,680 KB
testcase_11 AC 38 ms
52,376 KB
testcase_12 AC 38 ms
52,268 KB
testcase_13 AC 38 ms
53,256 KB
testcase_14 AC 39 ms
53,296 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 37 ms
52,576 KB
testcase_17 AC 41 ms
54,024 KB
testcase_18 AC 39 ms
52,004 KB
testcase_19 AC 38 ms
53,084 KB
testcase_20 AC 38 ms
52,064 KB
testcase_21 AC 37 ms
51,876 KB
testcase_22 AC 36 ms
52,276 KB
testcase_23 AC 37 ms
51,552 KB
testcase_24 AC 37 ms
53,064 KB
testcase_25 AC 37 ms
52,408 KB
testcase_26 AC 39 ms
52,144 KB
testcase_27 AC 39 ms
54,180 KB
testcase_28 AC 39 ms
53,644 KB
testcase_29 AC 36 ms
52,944 KB
testcase_30 AC 36 ms
52,292 KB
testcase_31 AC 35 ms
52,840 KB
testcase_32 AC 37 ms
53,036 KB
testcase_33 AC 37 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
v=list(map(int,input().split()))
dp=[0,v[0]]
for i in range(1,n):
	dp.append(max(dp[-1],dp[-2]+v[i]))
print(dp[n])
0