結果

問題 No.2196 Pair Bonus
ユーザー ShirotsumeShirotsume
提出日時 2022-02-06 12:01:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,372 KB
最終ジャッジ日時 2024-06-11 13:52:26
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 213 ms
139,116 KB
testcase_04 AC 186 ms
139,372 KB
testcase_05 AC 42 ms
58,624 KB
testcase_06 AC 40 ms
58,368 KB
testcase_07 AC 41 ms
58,752 KB
testcase_08 AC 88 ms
84,608 KB
testcase_09 AC 199 ms
123,728 KB
testcase_10 AC 161 ms
115,736 KB
testcase_11 AC 101 ms
87,680 KB
testcase_12 AC 204 ms
117,628 KB
testcase_13 AC 41 ms
59,008 KB
testcase_14 AC 71 ms
77,312 KB
testcase_15 AC 42 ms
59,648 KB
testcase_16 AC 166 ms
127,992 KB
testcase_17 AC 48 ms
62,080 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