結果
問題 | No.187 中華風 (Hard) |
ユーザー | 古寺いろは |
提出日時 | 2015-04-19 23:40:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 1,397 ms |
コンパイル使用メモリ | 158,044 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-07-04 18:42:11 |
合計ジャッジ時間 | 16,618 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 224 ms
9,888 KB |
testcase_01 | AC | 1,322 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; long long gcd(long long a, long long b){ if (b == 0) return a; return gcd(b, a%b); } int main() { long long X1, Y1, X2, Y2, X3, Y3; cin >> Y1 >> X1 >> Y2 >> X2 >> Y3 >> X3; long long ans = Y3; if (Y3 == 0) ans = X2; int count = X2 + 1000; long long add = X3; while (count > 0 && ans >= 0){ if (ans % X2 == Y2) break; ans += add; count--; } if (count <= 0 || ans < 0){ cout << -1 << endl; return 0; } add = (X3 * X2) / gcd(X3, X2); count = X1 + 1000; while (count > 0){ if (ans % X1 == Y1) break; ans += add; count--; } if (count <= 0 || ans < 0){ cout << -1 << endl; return 0; } cout << ans << endl; }