結果

問題 No.1120 Strange Teacher
ユーザー CleyLCleyL
提出日時 2023-06-27 12:32:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 73,460 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-17 09:46:47
合計ジャッジ時間 4,718 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 58 ms
4,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 57 ms
4,380 KB
testcase_11 AC 58 ms
4,380 KB
testcase_12 AC 58 ms
4,376 KB
testcase_13 AC 57 ms
4,376 KB
testcase_14 AC 58 ms
4,376 KB
testcase_15 AC 58 ms
4,376 KB
testcase_16 AC 58 ms
4,380 KB
testcase_17 AC 60 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 63 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 WA -
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 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(){
  int n;cin>>n;
  vector<int> 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{
    int 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;
    }
    int c = dif/(n-2);
    
    int nw = 0;
    for(int i = 0; n > i; i++){
      int 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;
    }
  }
}
0