結果

問題 No.1120 Strange Teacher
ユーザー risujirohrisujiroh
提出日時 2020-07-22 21:29:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 1,000 ms
コード長 907 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 203,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 13:37:37
合計ジャッジ時間 3,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 19 ms
6,940 KB
testcase_05 AC 19 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 20 ms
6,944 KB
testcase_08 AC 20 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 19 ms
6,944 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 20 ms
6,944 KB
testcase_15 AC 19 ms
6,944 KB
testcase_16 AC 19 ms
6,944 KB
testcase_17 AC 19 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 20 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 18 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  using ll = long long;
  int n;
  cin >> n;
  vector<ll> a(n), b(n);
  for (auto&& e : a) cin >> e;
  for (auto&& e : b) cin >> e;
  auto d = accumulate(begin(a), end(a), 0LL) - accumulate(begin(b), end(b), 0LL);
  if (n == 2) {
    if (d) {
      cout << "-1\n";
    } else {
      cout << abs(a[0] - b[0]) << '\n';
    }
    exit(0);
  }
  if (d < 0 or d % (n - 2)) {
    cout << "-1\n";
    exit(0);
  }
  ll num = d / (n - 2), sum = 0;
  for (int i = 0; i < n; ++i) {
    ll delta = b[i] - a[i];
    if ((num + delta) & 1) {
      cout << "-1\n";
      exit(0);
    }
    ll x = (num + delta) / 2;
    if (x < 0 or x > num) {
      cout << "-1\n";
      exit(0);
    }
    sum += x;
  }
  cout << num << '\n';
  DEBUG(sum);
}
0