結果

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

テストケース

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

ソースコード

diff #

from functools import lru_cache

@lru_cache(maxsize=1000)
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