結果
問題 | No.185 和風 |
ユーザー | aaa |
提出日時 | 2018-10-03 16:51:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 867 ms |
コンパイル使用メモリ | 97,988 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 10:23:53 |
合計ジャッジ時間 | 1,343 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
ソースコード
#include <stdio.h> #include <algorithm> #include <iostream> #include <string> #include <vector> #include <functional> #include <map> #include <iomanip> #include <math.h> #include <stack> #include <queue> #include <bitset> #include <cstdlib> #include <tuple> #include <cctype> #include <ctype.h> #include <set> #include <sstream> using namespace std; int main() { int i, j, k; int n; vector<int>saa; cin >> n; int sa; for (i = 0; i < n; i++) { int x, y; cin >> x >> y; sa = y - x; if (sa <= 0) { cout << -1 << endl; return 0; } saa.push_back(sa); } for (i = 0; i < saa.size(); i++) { if (sa != saa[i]) { cout << -1 << endl; return 0; } } cout << sa << endl; getchar(); getchar(); return 0; }