結果
問題 | No.186 中華風 (Easy) |
ユーザー | moti |
提出日時 | 2015-11-29 23:20:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,205 bytes |
コンパイル時間 | 651 ms |
コンパイル使用メモリ | 64,960 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-14 05:20:07 |
合計ジャッジ時間 | 1,358 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef __int128_t int128; int128 extgcd(int128 a, int128 b, int128& x, int128& y) { int128 d = a; if(b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else { x = 1; y = 0; } return d; } int128 mod_inverse(int128 a, int128 m) { int128 x, y; extgcd(a, m, x, y); return (m + x % m) % m; } namespace math { template<class T> pair<T, T> linear_congruence(vector<T> const& A, vector<T> const& B, vector<T> const& M) { T x = 0, m = 1; rep(i, A.size()) { T a = A[i] * m, b = B[i] - A[i] * x, d = __gcd(M[i], a); if(b % d != 0) { return {0, -1}; } T t = b / d * mod_inverse(a / d, M[i] / d) % (M[i] / d); x += m * t; m *= M[i] / d; } return {x % m, m}; } } int main() { vector<int> A(3), B(3),M(3); rep(i, 3) { cin >> B[i] >> M[i]; A[i] = 1; } auto ans = math::linear_congruence(A, B, M); if(ans.second == -1) { cout << -1 << endl; exit(0); } if(ans.first == 0) { cout << ans.second << endl; } else { cout << ans.first << endl; } return 0; }