結果

問題 No.2196 Pair Bonus
ユーザー MasKoaTSMasKoaTS
提出日時 2023-01-20 21:47:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 138,900 KB
最終ジャッジ日時 2024-06-23 09:43:12
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 184 ms
138,892 KB
testcase_04 AC 192 ms
138,900 KB
testcase_05 AC 44 ms
58,880 KB
testcase_06 AC 43 ms
58,240 KB
testcase_07 AC 42 ms
58,624 KB
testcase_08 AC 88 ms
84,464 KB
testcase_09 AC 181 ms
122,964 KB
testcase_10 AC 143 ms
115,576 KB
testcase_11 AC 91 ms
86,912 KB
testcase_12 AC 166 ms
117,496 KB
testcase_13 AC 42 ms
58,496 KB
testcase_14 AC 68 ms
77,824 KB
testcase_15 AC 42 ms
59,648 KB
testcase_16 AC 171 ms
127,796 KB
testcase_17 AC 46 ms
63,104 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(a[2 * i] + a[2 * i + 1] + x[i], b[2 * i] + b[2 * i + 1] + x[i], a[2 * i] + b[2 * i + 1] + y[i], b[2 * i] + a[2 * i + 1] + y[i])
print(ans)
0