結果

問題 No.1120 Strange Teacher
ユーザー CleyLCleyL
提出日時 2023-06-27 12:51:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 4,852 KB
最終ジャッジ日時 2023-09-17 10:10:20
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 8 ms
4,380 KB
testcase_04 AC 60 ms
4,648 KB
testcase_05 AC 60 ms
4,676 KB
testcase_06 AC 59 ms
4,744 KB
testcase_07 AC 60 ms
4,628 KB
testcase_08 AC 60 ms
4,748 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 60 ms
4,648 KB
testcase_11 AC 60 ms
4,612 KB
testcase_12 AC 60 ms
4,632 KB
testcase_13 AC 59 ms
4,852 KB
testcase_14 AC 59 ms
4,580 KB
testcase_15 AC 60 ms
4,648 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 66 ms
4,668 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 51 ms
4,632 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 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