結果
問題 | No.185 和風 |
ユーザー | hotpepsi |
提出日時 | 2015-11-04 01:06:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 320 bytes |
コンパイル時間 | 405 ms |
コンパイル使用メモリ | 55,596 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-09-13 12:21:26 |
合計ジャッジ時間 | 860 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <cstring> using namespace std; int main(int argc, char *argv[]) { int N; cin >> N; int x, y; cin >> x >> y; int ans = y - x; if (ans <= 0) { ans = -1; } for (int i = 1; i < N; ++i) { cin >> x >> y; if ((y - x) != ans) { ans = -1; } } cout << ans << endl; return 0; }