結果

問題 No.2196 Pair Bonus
ユーザー qibqib
提出日時 2023-01-21 03:47:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 139,336 KB
最終ジャッジ日時 2024-06-23 14:59:50
合計ジャッジ時間 3,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,104 KB
testcase_01 AC 38 ms
52,452 KB
testcase_02 AC 37 ms
53,048 KB
testcase_03 AC 198 ms
139,336 KB
testcase_04 AC 188 ms
139,240 KB
testcase_05 AC 43 ms
60,404 KB
testcase_06 AC 41 ms
59,760 KB
testcase_07 AC 42 ms
60,596 KB
testcase_08 AC 89 ms
84,652 KB
testcase_09 AC 179 ms
123,532 KB
testcase_10 AC 146 ms
116,012 KB
testcase_11 AC 97 ms
87,472 KB
testcase_12 AC 158 ms
118,088 KB
testcase_13 AC 41 ms
59,308 KB
testcase_14 AC 81 ms
78,040 KB
testcase_15 AC 43 ms
60,268 KB
testcase_16 AC 175 ms
127,824 KB
testcase_17 AC 48 ms
65,072 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):
  ans += max(max(a[2 * i] + a[2 * i + 1], b[2 * i] + b[2 * i + 1]) + x[i], max(a[2 * i] + b[2 * i + 1], b[2 * i] + a[2 * i + 1]) + y[i])

print(ans)
0