結果
問題 | No.185 和風 |
ユーザー | toshiro_yanagi |
提出日時 | 2019-01-08 22:50:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 481 ms |
コンパイル使用メモリ | 63,104 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 00:49:34 |
合計ジャッジ時間 | 937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:20:17: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized] 20 | cout << ans << endl; | ^~~ main.cpp:11:13: note: 'ans' was declared here 11 | int ans; | ^~~
ソースコード
#include <iostream> #define rep(i, n) for (int i = 0; i < n; i++) using namespace std; int main() { int n; cin >> n; int ans; rep(i, n) { int x, y; cin >> x >> y; int z = y - x; ans = (z > 0 && (i == 0 || ans == z)) ? z : -1; } cout << ans << endl; }