結果
問題 | No.2324 Two Countries within UEC |
ユーザー | FplusFplusF |
提出日時 | 2023-05-28 14:05:14 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 241 ms / 2,000 ms |
コード長 | 1,126 bytes |
コンパイル時間 | 2,309 ms |
コンパイル使用メモリ | 201,908 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 23:20:16 |
合計ジャッジ時間 | 7,604 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 41 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using pll=pair<ll,ll>; using tll=tuple<ll,ll,ll>; const ll INF=(1ll<<60); #define rep(i,n) for (ll i=0;i<(ll)(n);i++) #define all(v) v.begin(),v.end() template<class T> void chmin(T &a,T b){ if(a>b){ a=b; } } template<class T> void chmax(T &a,T b){ if(a<b){ a=b; } } ll modpow(ll a,ll b,ll mod){ if(mod==1) return 0; if(b==0) return 1; ll p=a,ret=1; for(ll i=0;i<=62;i++){ if(b&(1ll<<i)){ ret*=p; ret%=mod; } p=(p%mod)*(p%mod); p%=mod; } return ret; } ll division(ll a,ll b,ll mod){ return (a*modpow(b,mod-2,mod))%mod; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll n,m,p,q; cin >> n >> m >> p >> q; while(q--){ ll x,f; cin >> x >> f; if(x%p==0){ if(f==0) cout << m << '\n'; else cout << "0\n"; continue; } ll s=division(f,x,p); if(s==0) s+=p; if(s<=m) cout << 1+(m-s)/p << '\n'; else cout << "0\n"; } }