結果

問題 No.45 回転寿司
ユーザー CsTarepandaCsTarepanda
提出日時 2019-03-06 16:20:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 5,000 ms
コード長 617 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,600 KB
最終ジャッジ日時 2024-06-08 12:36:45
合計ジャッジ時間 21,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,600 KB
testcase_01 AC 536 ms
44,092 KB
testcase_02 AC 541 ms
44,220 KB
testcase_03 AC 544 ms
44,216 KB
testcase_04 AC 546 ms
44,092 KB
testcase_05 AC 532 ms
44,216 KB
testcase_06 AC 545 ms
44,480 KB
testcase_07 AC 543 ms
43,960 KB
testcase_08 AC 537 ms
43,960 KB
testcase_09 AC 549 ms
44,220 KB
testcase_10 AC 540 ms
44,352 KB
testcase_11 AC 536 ms
44,600 KB
testcase_12 AC 542 ms
44,344 KB
testcase_13 AC 530 ms
44,088 KB
testcase_14 AC 535 ms
44,348 KB
testcase_15 AC 541 ms
44,344 KB
testcase_16 AC 534 ms
43,960 KB
testcase_17 AC 530 ms
43,836 KB
testcase_18 AC 536 ms
44,348 KB
testcase_19 AC 536 ms
44,216 KB
testcase_20 AC 524 ms
44,600 KB
testcase_21 AC 524 ms
44,344 KB
testcase_22 AC 521 ms
44,344 KB
testcase_23 AC 526 ms
44,272 KB
testcase_24 AC 528 ms
44,220 KB
testcase_25 AC 529 ms
44,056 KB
testcase_26 AC 532 ms
44,216 KB
testcase_27 AC 534 ms
43,836 KB
testcase_28 AC 543 ms
44,348 KB
testcase_29 AC 540 ms
44,220 KB
testcase_30 AC 544 ms
44,472 KB
testcase_31 AC 521 ms
44,348 KB
testcase_32 AC 524 ms
43,828 KB
testcase_33 AC 554 ms
44,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n = int(input())
a = np.array(list(map(int, input().split())) + [0] * (3 * 3 - n % 3))
length = len(a)

free, fix = 0, 0
oxo = [True, False, True]
xxo = [False, False, True]
oxx = [True, False, False]
xox = [False, True, False]

def f(array, pos):
    return np.sum(a[pos:pos + 3] * array)

pos = 0

for i in range(length // 3):
    tmp_fix = max(
        free + f(oxo, pos),
        free + f(xxo, pos),
        fix  + f(xxo, pos),
    )
    free = max(
        fix  + f(xox, pos),
        free + f(oxx, pos),
        free + f(xox, pos),
    )
    fix = tmp_fix
    pos += 3

print(max(fix, free))
0