結果
問題 | No.186 中華風 (Easy) |
ユーザー | hokuto |
提出日時 | 2021-08-30 16:14:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,213 bytes |
コンパイル時間 | 870 ms |
コンパイル使用メモリ | 97,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 02:18:24 |
合計ジャッジ時間 | 1,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,948 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 3 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <utility> #include <vector> #include <string> #include <cmath> #include <algorithm> #include <functional> #include <iomanip> #include <map> #include <set> #include <queue> using namespace std; using ll = long long int; #define chmax(x,y) x = (x > (y)) ? x : (x = (y)); #define chmin(x,y) x = (x < (y)) ? x : (x = (y)); ll mod(ll a, ll m) { return (a % m + m) % m; } ll extgcd(ll a, ll b,ll &x, ll &y) { if(b == 0) { x = 1; y = 0; return a; } ll d = extgcd(b,a%b,y,x); y -= a/b * x; return d; } pair<ll,ll> crt(vector<ll> &b, vector<ll> &m) { ll r = 0, M = 1; for(int i=0;i<b.size();++i) { ll p,q; ll d = extgcd(M,m[i],p,q); if( (b[i]-r)%d != 0 )return {0, -1}; ll tmp = (b[i]-r)/d * p %(m[i]/d); r += M*tmp; M *= m[i]/d; } return {mod(r,M),M}; } int main(int argc, char const *argv[]) { vector<ll> B,M; int zero = 0; for(int i=0;i<3;++i) { ll a,b; cin >> a >> b; B.emplace_back(a); M.emplace_back(b); if(a == 0)zero+=1; } auto answer = crt(B,M); if(answer.first == 0)answer.first = -1; if(zero)std::cout << answer.second << std::endl; else std::cout << answer.first << std::endl; }