結果
問題 | No.186 中華風 (Easy) |
ユーザー | Lepton_s |
提出日時 | 2015-04-20 00:00:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,423 bytes |
コンパイル時間 | 614 ms |
コンパイル使用メモリ | 84,520 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-04 19:02:14 |
合計ジャッジ時間 | 1,317 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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
5,376 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
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const int INF = 1<<25; typedef pair<int,int> P; typedef long long ll; typedef unsigned long long ull; ll mod = 1e9+7; ll pow_mod(ll a, ll n, ll m){ ll r = 1; while(n){ if(n&1) r = r*a%m; a = a*a%m; n >>= 1; } return r; } ll extgcd(ll a, ll b, ll &x, ll &y){ ll d = a; if(b){ d = extgcd(b, a%b, y, x); y -= (a/b)*x; } else { x = 1; y = 0; } return d; } ll mod_inv(ll a, ll m){ ll x, y; extgcd(a, m, x, y); return (m+x%m)%m; } int main(){ ll n; // cin>>n; n = 3; vector<ll> b(n), m(n); for(int i = 0; i < n; i++) cin>>b[i]>>m[i]; ll res = -2; /* for(int i = 0; i < n; i++){ for(int j = i+1; j < n; j++){ ll gm = __gcd(m[i], m[j]); if(b[i]%gm!=b[j]%gm) res = -1; } } */ if(res==-1){ cout<<-1<<endl; return 0; } ll X = 0, M = 1; for(int i = 0; i < n; i++){ ll A = M, B = b[i]-X, D = __gcd(m[i], M); if(B%D) res = -1; ll T = B/D*mod_inv(A/D, m[i]/D)%(m[i]/D); X = X+M*T; M *= m[i]/D; } cout<<(res<0?-1:X%M)<<endl; return 0; }