結果

問題 No.1120 Strange Teacher
ユーザー CleyLCleyL
提出日時 2023-06-27 13:17:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 73,440 KB
実行使用メモリ 4,808 KB
最終ジャッジ日時 2023-09-17 10:29:45
合計ジャッジ時間 4,729 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 7 ms
4,380 KB
testcase_04 AC 60 ms
4,600 KB
testcase_05 AC 60 ms
4,544 KB
testcase_06 AC 59 ms
4,588 KB
testcase_07 AC 60 ms
4,556 KB
testcase_08 AC 59 ms
4,568 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 60 ms
4,808 KB
testcase_11 AC 61 ms
4,592 KB
testcase_12 AC 60 ms
4,560 KB
testcase_13 AC 60 ms
4,564 KB
testcase_14 AC 60 ms
4,584 KB
testcase_15 AC 60 ms
4,576 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 66 ms
4,556 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 51 ms
4,556 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
int main(){
  long long n;cin>>n;
  vector<long long> A(n), B(n);
  for(int i = 0; n > i; i++){
    cin>>A[i];
  }
  for(int i = 0; n > i; i++){
    cin>>B[i];
  }
  if(n == 2){
    if(A[0]+A[1] == B[0]+B[1]){
      cout << abs(A[0]-B[0]) << endl;
    }else{
      cout << -1 << endl;
    }
  }else{
    long long dif = 0;
    for(int i = 0; n > i; i++){
      dif += A[i]-B[i];
    }
    if((dif < 0) || (dif%(n-2))){
      cout << -1 << endl;
      return 0;
    }
    long long c = dif/(n-2);
    
    long long nw = 0;
    for(int i = 0; n > i; i++){
      long long mn = A[i]-c;
      if((B[i]-mn)%2){
        cout << -1 << endl;
        return 0;
      }
      nw += (B[i]-mn)/2;
    }
    if(nw == c){
      cout << c << endl;
    }else{
      cout << -1 << endl;
    }
  }
}
//444 711 620 511 220 111
0