結果
問題 |
No.185 和風
|
ユーザー |
![]() |
提出日時 | 2019-02-24 13:41:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 455 bytes |
コンパイル時間 | 1,484 ms |
コンパイル使用メモリ | 166,372 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 16:17:21 |
合計ジャッジ時間 | 2,020 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; const int INF = 1e9; const int mod = 1e9+7; const double EPS = 1e-10; const double PI = acos(-1.0); int main() { int n,x,y,ans; cin >> n >> x >> y; ans = y-x; if(ans <= 0) ans = -1; for(int i = 1; i < n; i++){ cin >> x >> y; if(ans != y-x) ans = -1; } cout << ans << endl; return 0; }