結果

問題 No.45 回転寿司
ユーザー mahiromahiro
提出日時 2020-01-11 19:56:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 59,724 KB
最終ジャッジ日時 2024-11-25 09:18:16
合計ジャッジ時間 2,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,796 KB
testcase_01 AC 37 ms
57,936 KB
testcase_02 AC 36 ms
57,716 KB
testcase_03 AC 35 ms
57,912 KB
testcase_04 AC 35 ms
57,384 KB
testcase_05 AC 32 ms
52,472 KB
testcase_06 AC 35 ms
58,840 KB
testcase_07 AC 37 ms
58,040 KB
testcase_08 AC 33 ms
53,316 KB
testcase_09 AC 35 ms
57,916 KB
testcase_10 AC 32 ms
52,864 KB
testcase_11 AC 33 ms
52,908 KB
testcase_12 AC 37 ms
57,892 KB
testcase_13 AC 33 ms
53,708 KB
testcase_14 AC 31 ms
52,856 KB
testcase_15 AC 33 ms
52,980 KB
testcase_16 AC 32 ms
52,604 KB
testcase_17 AC 32 ms
53,640 KB
testcase_18 AC 33 ms
53,004 KB
testcase_19 AC 35 ms
58,124 KB
testcase_20 AC 32 ms
53,296 KB
testcase_21 AC 32 ms
52,280 KB
testcase_22 AC 32 ms
52,828 KB
testcase_23 AC 34 ms
52,268 KB
testcase_24 AC 32 ms
52,584 KB
testcase_25 AC 31 ms
53,164 KB
testcase_26 AC 36 ms
52,976 KB
testcase_27 AC 37 ms
57,704 KB
testcase_28 AC 33 ms
52,140 KB
testcase_29 AC 35 ms
58,452 KB
testcase_30 AC 36 ms
57,548 KB
testcase_31 AC 32 ms
52,556 KB
testcase_32 AC 33 ms
52,556 KB
testcase_33 AC 36 ms
59,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
V = [int(i) for i in input().split()]

dp = [[0, 0] for _ in range(N + 1)]
for i in range(1, N + 1):
    # 取らない
    dp[i][0] = max(dp[i-1])
    # 取る
    dp[i][1] = dp[i-1][0] + V[i-1]
ans = max(dp[N])
print(ans)
0