結果

問題 No.2196 Pair Bonus
ユーザー とりゐとりゐ
提出日時 2022-02-07 09:40:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 139,216 KB
最終ジャッジ日時 2024-06-11 23:49:45
合計ジャッジ時間 4,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,652 KB
testcase_01 AC 33 ms
52,008 KB
testcase_02 AC 34 ms
52,124 KB
testcase_03 AC 177 ms
139,216 KB
testcase_04 AC 180 ms
139,192 KB
testcase_05 AC 39 ms
60,060 KB
testcase_06 AC 38 ms
60,148 KB
testcase_07 AC 37 ms
60,604 KB
testcase_08 AC 78 ms
84,380 KB
testcase_09 AC 164 ms
123,144 KB
testcase_10 AC 135 ms
115,936 KB
testcase_11 AC 85 ms
87,476 KB
testcase_12 AC 148 ms
117,572 KB
testcase_13 AC 39 ms
58,980 KB
testcase_14 AC 66 ms
78,116 KB
testcase_15 AC 38 ms
61,192 KB
testcase_16 AC 162 ms
127,552 KB
testcase_17 AC 42 ms
63,264 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
if 1<=n<=10**5:
  pass
else:
  raise Exception
if len(a)==len(b)==2*n and len(x)==len(y)==n:
  pass
else:
  raise Exception
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