結果

問題 No.2196 Pair Bonus
ユーザー katonyonkokatonyonko
提出日時 2023-01-20 21:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,100 KB
最終ジャッジ日時 2024-06-23 09:35:02
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 194 ms
139,096 KB
testcase_04 AC 194 ms
139,100 KB
testcase_05 AC 43 ms
58,752 KB
testcase_06 AC 43 ms
58,368 KB
testcase_07 AC 43 ms
58,880 KB
testcase_08 AC 89 ms
84,728 KB
testcase_09 AC 183 ms
123,308 KB
testcase_10 AC 148 ms
115,660 KB
testcase_11 AC 95 ms
87,552 KB
testcase_12 AC 169 ms
118,008 KB
testcase_13 AC 44 ms
59,008 KB
testcase_14 AC 73 ms
77,440 KB
testcase_15 AC 44 ms
59,588 KB
testcase_16 AC 181 ms
127,692 KB
testcase_17 AC 51 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
  return sys.stdin.readline()[:-1]
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],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])
print(ans)
0