結果

問題 No.2196 Pair Bonus
ユーザー umezoumezo
提出日時 2023-01-20 22:31:32
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 200,988 KB
実行使用メモリ 7,864 KB
最終ジャッジ日時 2023-09-05 14:50:45
合計ジャッジ時間 3,733 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 74 ms
7,748 KB
testcase_04 AC 75 ms
7,864 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 14 ms
4,380 KB
testcase_09 AC 70 ms
7,592 KB
testcase_10 AC 46 ms
5,944 KB
testcase_11 AC 17 ms
4,380 KB
testcase_12 AC 59 ms
6,692 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 8 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 64 ms
7,500 KB
testcase_17 AC 3 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<ll> A(2*n),B(2*n),X(n),Y(n);
  rep(i,2*n) cin>>A[i];
  rep(i,2*n) cin>>B[i];
  rep(i,n) cin>>X[i];
  rep(i,n) cin>>Y[i];
  
  ll ans=0;
  rep(i,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]);
  cout<<ans<<endl;
  
  return 0;
}
0