結果
問題 | No.2324 Two Countries within UEC |
ユーザー | HIcoder |
提出日時 | 2023-05-28 14:38:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,038 bytes |
コンパイル時間 | 701 ms |
コンパイル使用メモリ | 85,040 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 05:53:39 |
合計ジャッジ時間 | 7,278 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 251 ms
5,248 KB |
testcase_01 | AC | 255 ms
5,376 KB |
testcase_02 | AC | 44 ms
5,376 KB |
testcase_03 | AC | 182 ms
5,376 KB |
testcase_04 | AC | 214 ms
5,376 KB |
testcase_05 | AC | 47 ms
5,376 KB |
testcase_06 | AC | 88 ms
5,376 KB |
testcase_07 | AC | 40 ms
5,376 KB |
testcase_08 | AC | 187 ms
5,376 KB |
testcase_09 | AC | 198 ms
5,376 KB |
testcase_10 | AC | 267 ms
5,376 KB |
testcase_11 | AC | 251 ms
5,376 KB |
testcase_12 | AC | 76 ms
5,376 KB |
testcase_13 | AC | 76 ms
5,376 KB |
testcase_14 | AC | 45 ms
5,376 KB |
testcase_15 | AC | 38 ms
5,376 KB |
testcase_16 | AC | 169 ms
5,376 KB |
testcase_17 | AC | 104 ms
5,376 KB |
testcase_18 | AC | 51 ms
5,376 KB |
testcase_19 | AC | 254 ms
5,376 KB |
testcase_20 | AC | 33 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 207 ms
5,376 KB |
testcase_23 | AC | 64 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 257 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 1 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
testcase_42 | WA | - |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<tuple> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=998244353; /* tuple<ll,ll,ll> extgcd(ll a,ll b){ if(b==0){ return make_tuple(a,1,0); }else{ auto [g,x,y]=extgcd(b,a%b); return make_tuple(g,y,x-(a/b)*y); } } mod_inv(ll a,ll p){ extgcd(a,p); } */ //拡張ユークリッド互除法 long long int ext_gcd(long long int a, long long int b, long long int &x, long long int &y) { if (b == 0) { x = 1; y = 0; return a; } long long int q = a / b; long long int g = ext_gcd(b, a-q*b, x, y); long long int z = x-q*y; x = y; y = z; return g; } //aとmは互いに素, a^(-1) mod m long long int modinv(long long int a, long long int m) { long long int x, y; ext_gcd(a, m, x, y); x %= m; if (x < 0) x += m; return x; } ll gcd(ll x,ll y){ return (y==0?x:gcd(y,x%y)); } int main(){ ll N,M,P,Q; cin>>N>>M>>P>>Q; vector<ll> ans(Q); ll xi,fi; for(int q=0;q<Q;q++){ cin>>xi>>fi; ll g=gcd(xi,P); //xiのmod Pでの逆元 if(fi%g!=0){ //cout<<"tt"<<endl; ans[q]=0; }else{ ll invxi=modinv(xi,P); //cout<<"(invxi*xi)%P="<<(invxi*xi)%P<<endl; ll tmp=fi*invxi%P; /* ll n=0; if((M-tmp)%P==0){ n=(M-tmp)/P+1; }else{ } */ if(M-tmp<0){ ans[q]=0; }else{ // ll n; if(tmp==0){ n=(M-tmp)/P; }else{ n=(M-tmp)/P+1; } ans[q]=n; } } } for(ll v:ans){ cout<<v<<endl; } }