結果

問題 No.2196 Pair Bonus
ユーザー ThetaTheta
提出日時 2023-01-27 15:23:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,168 KB
最終ジャッジ日時 2024-06-28 01:47:16
合計ジャッジ時間 4,377 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 365 ms
43,168 KB
testcase_04 AC 348 ms
43,120 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 80 ms
16,060 KB
testcase_09 AC 333 ms
39,752 KB
testcase_10 AC 229 ms
30,264 KB
testcase_11 AC 98 ms
17,468 KB
testcase_12 AC 377 ms
36,472 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 56 ms
13,568 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 316 ms
40,684 KB
testcase_17 AC 34 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    X = list(map(int, input().split()))
    Y = list(map(int, input().split()))

    dp_table = [0 for _ in range(N+1)]
    for idx in range(N):
        dp_table[idx+1] = (
            dp_table[idx]
            + max(
                A[idx*2] + B[idx*2+1] + Y[idx],
                B[idx*2] + A[idx*2+1] + Y[idx],
                A[idx*2] + A[idx*2+1] + X[idx],
                B[idx*2] + B[idx*2+1] + X[idx]
            )
        )

    print(dp_table[-1])


if __name__ == "__main__":
    main()
0