結果

問題 No.2196 Pair Bonus
ユーザー _lS_RRoRbT_lS_RRoRbT
提出日時 2023-01-20 22:45:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 139,544 KB
最終ジャッジ日時 2024-06-23 10:42:16
合計ジャッジ時間 3,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 200 ms
139,544 KB
testcase_04 AC 194 ms
139,232 KB
testcase_05 AC 45 ms
58,624 KB
testcase_06 AC 44 ms
58,368 KB
testcase_07 AC 44 ms
58,624 KB
testcase_08 AC 89 ms
84,736 KB
testcase_09 AC 185 ms
123,484 KB
testcase_10 AC 160 ms
116,040 KB
testcase_11 AC 96 ms
87,368 KB
testcase_12 AC 174 ms
118,136 KB
testcase_13 AC 45 ms
58,880 KB
testcase_14 AC 76 ms
77,696 KB
testcase_15 AC 45 ms
59,520 KB
testcase_16 AC 179 ms
128,000 KB
testcase_17 AC 51 ms
62,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

for i in range(N):
    a1 = A[2 * i]
    a2 = A[2 * i + 1]
    b1 = B[2 * i]
    b2 = B[2 * i + 1]
    x = X[i]
    y = Y[i]
    ans += max(a1 + a2 + x, a1 + b2 + y, b1 + a2 + y, b1 + b2 + x)

print(ans)
0