結果
問題 | No.185 和風 |
ユーザー | penguinshunya |
提出日時 | 2019-05-19 14:27:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 403 bytes |
コンパイル時間 | 2,192 ms |
コンパイル使用メモリ | 199,352 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 06:28:25 |
合計ジャッジ時間 | 2,638 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:25:11: warning: 'x' may be used uninitialized [-Wmaybe-uninitialized] 25 | cout << x << endl; | ^ main.cpp:8:7: note: 'x' was declared here 8 | int x; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; int x; for (int i = 0; i < N; i++) { int X, Y; cin >> X >> Y; if (i == 0) { x = Y - X; if (x <= 0) { cout << -1 << endl; return 0; } } else { if (x != Y - X) { cout << -1 << endl; return 0; } } } cout << x << endl; return 0; }