結果

問題 No.1120 Strange Teacher
ユーザー CleyLCleyL
提出日時 2023-06-27 13:43:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 871 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 4,884 KB
最終ジャッジ日時 2023-09-17 10:29:49
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 8 ms
4,388 KB
testcase_04 AC 60 ms
4,716 KB
testcase_05 AC 60 ms
4,732 KB
testcase_06 AC 59 ms
4,880 KB
testcase_07 AC 60 ms
4,640 KB
testcase_08 AC 60 ms
4,884 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 60 ms
4,652 KB
testcase_11 AC 61 ms
4,640 KB
testcase_12 AC 60 ms
4,636 KB
testcase_13 AC 60 ms
4,660 KB
testcase_14 AC 60 ms
4,716 KB
testcase_15 AC 59 ms
4,584 KB
testcase_16 AC 59 ms
4,736 KB
testcase_17 AC 60 ms
4,732 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 66 ms
4,640 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 1 ms
4,384 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 53 ms
4,668 KB
testcase_25 AC 2 ms
4,384 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,384 KB
testcase_29 AC 2 ms
4,380 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 < 0) || (B[i]-mn)%2){
        cout << -1 << endl;
        return 0;
      }
      nw += (B[i]-mn)/2;
    }
    if(nw == c){
      cout << c << endl;
    }else{
      cout << -1 << endl;
    }
  }
}
//611 155k
0