結果

問題 No.45 回転寿司
ユーザー noriocnorioc
提出日時 2024-07-15 10:17:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 777 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 71,464 KB
最終ジャッジ日時 2024-07-15 10:17:14
合計ジャッジ時間 3,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,492 KB
testcase_01 AC 53 ms
65,224 KB
testcase_02 AC 58 ms
68,900 KB
testcase_03 AC 59 ms
69,548 KB
testcase_04 AC 54 ms
65,268 KB
testcase_05 AC 38 ms
54,436 KB
testcase_06 AC 50 ms
64,664 KB
testcase_07 AC 58 ms
68,448 KB
testcase_08 AC 41 ms
54,984 KB
testcase_09 AC 58 ms
67,376 KB
testcase_10 AC 49 ms
63,912 KB
testcase_11 AC 39 ms
55,508 KB
testcase_12 AC 64 ms
70,712 KB
testcase_13 AC 44 ms
55,388 KB
testcase_14 AC 39 ms
53,636 KB
testcase_15 AC 51 ms
64,504 KB
testcase_16 AC 39 ms
55,600 KB
testcase_17 AC 47 ms
63,840 KB
testcase_18 AC 41 ms
54,856 KB
testcase_19 AC 56 ms
66,196 KB
testcase_20 AC 39 ms
53,720 KB
testcase_21 AC 38 ms
53,900 KB
testcase_22 AC 38 ms
54,488 KB
testcase_23 AC 38 ms
53,152 KB
testcase_24 AC 36 ms
53,320 KB
testcase_25 AC 42 ms
53,224 KB
testcase_26 AC 53 ms
65,000 KB
testcase_27 AC 57 ms
66,248 KB
testcase_28 AC 51 ms
64,796 KB
testcase_29 AC 56 ms
65,932 KB
testcase_30 AC 57 ms
66,872 KB
testcase_31 AC 37 ms
54,448 KB
testcase_32 AC 37 ms
54,016 KB
testcase_33 AC 71 ms
71,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from enum import IntEnum, auto


# ステート遷移
class E(IntEnum):
    EAT = 0
    NOT_EAT = auto()

    def nexts(self):
        match self:
            case E.EAT: return [E.NOT_EAT]
            case E.NOT_EAT: return [E.EAT, E.NOT_EAT]
        assert False

    def cost(self, x: int) -> int:
        match self:
            case E.EAT: return x
            case E.NOT_EAT: return 0
        assert False

    @staticmethod
    def states():
        for fm in E:
            for to in fm.nexts():
                yield fm, to


N = int(input())
V = list(map(int, input().split()))

dp = [[0] * len(E) for _ in range(N+1)]
for i, v in enumerate(V):
    for fm, to in E.states():
        dp[i+1][to] = max(dp[i+1][to], dp[i][fm] + to.cost(v))

ans = max(dp[N])
print(ans)
0