結果

問題 No.45 回転寿司
ユーザー noriocnorioc
提出日時 2024-07-15 10:10:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 677 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 68,844 KB
最終ジャッジ日時 2024-07-15 10:10:55
合計ジャッジ時間 4,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,424 KB
testcase_01 AC 58 ms
64,040 KB
testcase_02 AC 66 ms
67,784 KB
testcase_03 AC 71 ms
67,812 KB
testcase_04 AC 56 ms
64,484 KB
testcase_05 AC 46 ms
54,512 KB
testcase_06 AC 56 ms
63,488 KB
testcase_07 AC 64 ms
68,484 KB
testcase_08 AC 44 ms
54,456 KB
testcase_09 AC 65 ms
67,900 KB
testcase_10 AC 51 ms
61,048 KB
testcase_11 AC 45 ms
53,868 KB
testcase_12 AC 64 ms
67,608 KB
testcase_13 AC 42 ms
53,352 KB
testcase_14 AC 43 ms
53,752 KB
testcase_15 AC 56 ms
63,200 KB
testcase_16 AC 46 ms
55,612 KB
testcase_17 AC 50 ms
60,972 KB
testcase_18 AC 46 ms
55,820 KB
testcase_19 AC 64 ms
66,292 KB
testcase_20 AC 44 ms
54,520 KB
testcase_21 AC 46 ms
54,432 KB
testcase_22 AC 44 ms
53,076 KB
testcase_23 AC 44 ms
54,688 KB
testcase_24 AC 69 ms
53,440 KB
testcase_25 AC 44 ms
54,028 KB
testcase_26 AC 58 ms
62,776 KB
testcase_27 AC 68 ms
66,228 KB
testcase_28 AC 58 ms
63,228 KB
testcase_29 AC 61 ms
66,156 KB
testcase_30 AC 65 ms
66,308 KB
testcase_31 AC 45 ms
53,276 KB
testcase_32 AC 42 ms
53,604 KB
testcase_33 AC 67 ms
68,844 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


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 in E:
        for to in fm.nexts():
            dp[i+1][to] = max(dp[i+1][to], dp[i][fm] + to.cost(v))

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