結果

問題 No.185 和風
ユーザー Kaz_nl
提出日時 2017-08-20 21:38:22
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 340 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 58,588 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 00:04:33
合計ジャッジ時間 1,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main() {
  int n, x, y, t;
  cin >> n >> x >> y;
  t = y - x;
  if (t <= 0) {
    cout << -1 << endl;
    return 0;
  }
  for (int i = 1; i < n; i++) {
    cin >> x >> y;
    if (t != y - x) {
      cout << -1 << endl;
      return 0;
    }
  }
  cout << t << endl;
  return 0;
}
0