結果

問題 No.2196 Pair Bonus
ユーザー ああいいああいい
提出日時 2023-01-21 14:33:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 139,344 KB
最終ジャッジ日時 2024-06-23 22:40:12
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 45 ms
51,968 KB
testcase_03 AC 205 ms
139,344 KB
testcase_04 AC 205 ms
139,344 KB
testcase_05 AC 47 ms
59,264 KB
testcase_06 AC 47 ms
58,496 KB
testcase_07 AC 47 ms
59,008 KB
testcase_08 AC 98 ms
84,736 KB
testcase_09 AC 195 ms
123,612 KB
testcase_10 AC 159 ms
115,840 KB
testcase_11 AC 102 ms
87,296 KB
testcase_12 AC 168 ms
118,012 KB
testcase_13 AC 46 ms
58,752 KB
testcase_14 AC 83 ms
77,696 KB
testcase_15 AC 46 ms
59,904 KB
testcase_16 AC 188 ms
127,992 KB
testcase_17 AC 54 ms
64,000 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):
    s = max(A[i * 2] + A[i * 2 + 1],B[i * 2] + B[i * 2 + 1]) + X[i]
    t = max(A[i * 2] + B[i * 2 + 1],B[i * 2] + A[i * 2 + 1]) + Y[i]
    ans += max(s,t)
print(ans)
0