結果
問題 | No.185 和風 |
ユーザー | kichirb3 |
提出日時 | 2018-02-28 17:07:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 793 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 70,144 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-01 08:57:50 |
合計ジャッジ時間 | 1,485 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
ソースコード
// No.185 和風 // https://yukicoder.me/problems/no/185 // #include <iostream> #include <vector> using namespace std; int solve(vector<pair<int, int>> &equations); int main() { unsigned int N; cin >> N; vector<pair<int, int>> equations; for (auto i = 0; i < N; i++) { int x, y; cin >> x >> y; equations.push_back(make_pair(x, y)); } int ans = solve(equations); cout << ans << endl; } int solve(vector<pair<int, int>> &equations) { int ans = equations[0].second - equations[0].first; if (ans < 0) return -1; for (auto i = 1; i < equations.size(); i++) { int tmp = equations[i].second - equations[i].first; if (tmp != ans) { ans = -1; break; } } return ans; }