結果

問題 No.904 サメトロ
ユーザー toto6114
提出日時 2019-10-11 22:58:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 92,748 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 09:03:44
合計ジャッジ時間 1,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cmath>
#include<iomanip>
#include<set>
#include<map>
#include<queue>
using namespace std;
typedef long long ll;
const int MOD=1e9+7;
int main() {
  int n,a[10000]={},b[10000]={},M,A=0,B=0,d;
  cin >> n;
  for(int i=0; i<n-1; i++) {
    cin >> a[i] >> b[i];
    A+=a[i],B+=b[i];
  }
  M=max(A,B);
  d=abs(A-B);
  cout << abs(M-d)+1 << endl;
}
0