結果

問題 No.1120 Strange Teacher
ユーザー yukudoyukudo
提出日時 2020-07-23 04:20:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,214 bytes
コンパイル時間 1,539 ms
コンパイル使用メモリ 167,368 KB
実行使用メモリ 4,756 KB
最終ジャッジ日時 2023-09-05 12:46:41
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 4 ms
4,380 KB
testcase_04 AC 24 ms
4,724 KB
testcase_05 AC 24 ms
4,736 KB
testcase_06 AC 25 ms
4,712 KB
testcase_07 AC 24 ms
4,632 KB
testcase_08 AC 24 ms
4,756 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 24 ms
4,696 KB
testcase_11 AC 24 ms
4,628 KB
testcase_12 AC 24 ms
4,640 KB
testcase_13 AC 24 ms
4,756 KB
testcase_14 AC 24 ms
4,660 KB
testcase_15 AC 24 ms
4,628 KB
testcase_16 AC 24 ms
4,752 KB
testcase_17 AC 25 ms
4,564 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 25 ms
4,632 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 22 ms
4,572 KB
testcase_25 RE -
testcase_26 WA -
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i)
#define ALL(v) (v).begin(),(v).end()
#define CLR(t,v) memset(t,(v),sizeof(t))
template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>&a){return os<<"("<<a.first<<","<<a.second<< ")";}
template<class T>void pv(T a,T b){for(T i=a;i!=b;++i)cout<<(*i)<<" ";cout<<endl;}
template<class T>void chmin(T&a,const T&b){if(a>b)a=b;}
template<class T>void chmax(T&a,const T&b){if(a<b)a=b;}

ll nextLong() { ll x; scanf("%lld", &x); return x;}

int main2() {
  int N = nextLong();
  vector<ll> A(N), B(N);
  REP(i, N) A[i] = nextLong();
  REP(i, N) B[i] = nextLong();

  ll sumA = accumulate(ALL(A), 0LL);
  ll sumB = accumulate(ALL(B), 0LL);

  if ((sumA - sumB) % (N - 2) != 0) {
    cout << -1 << endl;
    return 0;
  }

  bool ng = false;
  ll k = (sumA - sumB) / (N-2);

  ll kk = 0;
  REP(i, N) {
    int d = B[i] - (A[i] - k);
    if (d < 0 || d % 2) { ng = true; }
    kk += d/2;
  }

  ng = ng && (kk == k);

  if (ng)
    cout << -1 << endl;
  else
    cout << k << endl;
  return 0;
}

int main() {

#ifdef LOCAL
  for (;!cin.eof();cin>>ws)
#endif
    main2();
  return 0;
}
0