結果
問題 | No.186 中華風 (Easy) |
ユーザー | chocorusk |
提出日時 | 2018-11-24 17:35:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,129 bytes |
コンパイル時間 | 948 ms |
コンパイル使用メモリ | 103,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 18:33:00 |
合計ジャッジ時間 | 1,756 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include <cstdio> #include <cstring> #include <string> #include <iostream> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <unordered_map> #include <unordered_set> #include <random> using namespace std; typedef long long int ll; typedef pair<ll, ll> P; const ll MAX=1000; vector<ll> prime; bool isprime[MAX]; void sieve(){ for(ll i=3; i<MAX; i+=2){ isprime[i]=1; } isprime[2]=1; prime.push_back(2); for(ll i=3; i<MAX; i++){ if(isprime[i]){ prime.push_back(i); for(ll j=2*i; j<MAX; j+=i){ isprime[j]=0; } } } return; } ll extgcd(ll a, ll b, ll& x, ll& y){ ll d=a; if(b!=0){ d=extgcd(b, a%b, y, x); y-=(a/b)*x; }else{ x=1, y=0; } return d; } ll inv(ll a, ll p){ ll x, y; extgcd(a, p, x, y); if(x<0){ return p-(-x%p); }else{ return x%p; } } int main() { sieve(); unordered_map<ll, P> mp; for(int i=0; i<3; i++){ ll x, y; cin>>x>>y; ll y0=y; for(auto p:prime){ if(y0%p==0){ ll q=1; while(y0%p==0){ y0/=p; q*=p; } auto itr=mp.find(p); if(itr==mp.end()){ mp[p]=P(q, x%q); }else{ ll x1=(itr->second).second; ll q1=(itr->second).first; ll q0=min(q1, q); if(x1%q0!=x%q0){ cout<<-1<<endl; return 0; } if(q1<q) itr->second=P(q, x%q); } } } if(y0>1){ ll p=y0, q=p; auto itr=mp.find(p); if(itr==mp.end()){ mp[p]=P(q, x%q); }else{ ll x1=(itr->second).second; if(x1%q!=x%q){ cout<<-1<<endl; return 0; } } } } ll t[30]; ll m[30], b[30]; int c=0; for(auto p:mp){ m[c]=p.second.first, b[c]=p.second.second; c++; } bool nuee=1; for(int i=0; i<c; i++){ ll mp0=1; ll r=b[i]; for(int j=0; j<i; j++){ r+=(m[i]-t[j]*mp0%m[i]); r%=m[i]; mp0*=m[j]; mp0%=m[i]; } t[i]=inv(mp0, m[i])*r%m[i]; if(t[i]>0) nuee=0; } if(nuee){ ll mp0=1; for(int i=0; i<c; i++){ mp0*=m[i]; } cout<<mp0<<endl; return 0; } ll ans=0; ll mp0=1; for(int i=0; i<c; i++){ ans+=(t[i]*mp0); mp0*=m[i]; } cout<<ans<<endl; return 0; }