結果

問題 No.45 回転寿司
ユーザー けむけむけむけむ
提出日時 2021-06-17 15:06:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 579 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-06-10 21:55:00
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,392 KB
testcase_01 AC 46 ms
12,288 KB
testcase_02 AC 58 ms
13,696 KB
testcase_03 AC 58 ms
14,336 KB
testcase_04 AC 44 ms
12,416 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 42 ms
12,032 KB
testcase_07 AC 53 ms
13,696 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 56 ms
13,952 KB
testcase_10 AC 38 ms
11,520 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 55 ms
13,952 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 39 ms
11,648 KB
testcase_16 AC 36 ms
11,136 KB
testcase_17 AC 39 ms
11,392 KB
testcase_18 AC 34 ms
11,264 KB
testcase_19 AC 48 ms
13,184 KB
testcase_20 AC 33 ms
10,752 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 38 ms
11,648 KB
testcase_27 AC 50 ms
13,056 KB
testcase_28 AC 40 ms
11,904 KB
testcase_29 AC 48 ms
12,672 KB
testcase_30 AC 50 ms
12,800 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 32 ms
10,624 KB
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
import sys

sys.setrecursionlimit(2000)

@lru_cache(maxsize=5000)
def osusi(N, V):
    if N == 1:
        return V[0]
    pat = [0, 0, 0, 0, V[-2], V[-1]]
    if N - 2 >= 1:
        pat[0] = osusi(N - 2, V[:N - 2]) + V[-1]
    if N - 3 >= 1:
        pat[1] = osusi(N - 3, V[:N - 3]) + V[-1]
        pat[2] = osusi(N - 3, V[:N - 3]) + V[-2]
    if N - 4 >= 1:
        pat[3] = osusi(N - 4, V[:N - 4]) + V[-2]
    return max(pat)

if __name__ == '__main__':
    N = int(input())
    V_li = tuple(map(int, input().split()))
    print(osusi(N, V_li))
0