結果

問題 No.2196 Pair Bonus
ユーザー kohakoha11301kohakoha11301
提出日時 2023-03-02 13:43:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 139,320 KB
最終ジャッジ日時 2024-09-17 09:13:34
合計ジャッジ時間 3,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,624 KB
testcase_01 AC 32 ms
53,008 KB
testcase_02 AC 33 ms
52,600 KB
testcase_03 AC 177 ms
139,320 KB
testcase_04 AC 160 ms
139,300 KB
testcase_05 AC 36 ms
59,172 KB
testcase_06 AC 35 ms
59,768 KB
testcase_07 AC 36 ms
59,512 KB
testcase_08 AC 72 ms
84,184 KB
testcase_09 AC 161 ms
123,344 KB
testcase_10 AC 136 ms
115,696 KB
testcase_11 AC 82 ms
87,524 KB
testcase_12 AC 137 ms
117,804 KB
testcase_13 AC 37 ms
60,836 KB
testcase_14 AC 59 ms
77,688 KB
testcase_15 AC 38 ms
60,160 KB
testcase_16 AC 154 ms
127,428 KB
testcase_17 AC 43 ms
63,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, a, b, x, y):
    ans = 0
    for i in range(n):
        ans += max(a[2 * i] + a[2 * i + 1] + x[i], a[2 * i] + b[2 * i + 1] + y[i], b[2 * i] + a[2 * i + 1] + y[i], b[2 * i] + b[2 * i + 1] + x[i])
    return ans

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()))

print(solve(n, a, b, x, y))
0