結果

問題 No.45 回転寿司
ユーザー kept1994kept1994
提出日時 2022-05-07 01:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 61,804 KB
最終ジャッジ日時 2024-07-06 05:34:50
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,232 KB
testcase_01 AC 44 ms
58,896 KB
testcase_02 AC 45 ms
60,468 KB
testcase_03 AC 47 ms
60,796 KB
testcase_04 AC 45 ms
60,204 KB
testcase_05 AC 39 ms
53,332 KB
testcase_06 AC 42 ms
58,040 KB
testcase_07 AC 46 ms
60,848 KB
testcase_08 AC 41 ms
52,776 KB
testcase_09 AC 45 ms
60,480 KB
testcase_10 AC 40 ms
53,416 KB
testcase_11 AC 41 ms
53,136 KB
testcase_12 AC 46 ms
60,424 KB
testcase_13 AC 40 ms
52,780 KB
testcase_14 AC 40 ms
53,092 KB
testcase_15 AC 41 ms
53,232 KB
testcase_16 AC 41 ms
52,808 KB
testcase_17 AC 40 ms
52,784 KB
testcase_18 AC 41 ms
53,084 KB
testcase_19 AC 45 ms
59,444 KB
testcase_20 AC 39 ms
53,300 KB
testcase_21 AC 41 ms
54,088 KB
testcase_22 AC 40 ms
52,760 KB
testcase_23 AC 38 ms
53,020 KB
testcase_24 AC 39 ms
52,192 KB
testcase_25 AC 39 ms
52,588 KB
testcase_26 AC 41 ms
54,488 KB
testcase_27 AC 44 ms
59,936 KB
testcase_28 AC 41 ms
53,404 KB
testcase_29 AC 44 ms
60,040 KB
testcase_30 AC 44 ms
60,340 KB
testcase_31 AC 39 ms
54,148 KB
testcase_32 AC 39 ms
52,652 KB
testcase_33 AC 47 ms
61,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
MOD = 998244353
def main():
    N = int(input())
    A = list(map(int, input().split()))
    dp = [[0 for _ in range(2)] for _ in range(N + 1)]
    for i in range(N):
        dp[i + 1][0] = max(dp[i])
        dp[i + 1][1] = dp[i][0] + A[i]
    print(max(dp[-1]))
    return

if __name__ == '__main__':
    main()
0