結果

問題 No.2324 Two Countries within UEC
ユーザー gyozasukisuki
提出日時 2023-05-28 14:16:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,090 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 192,332 KB
最終ジャッジ日時 2025-02-13 11:08:35
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
using namespace std;
const int INF = 1e9;
using ll = long long;
using inv = vector<int>;
using stv = vector<string>;
using pint = pair<int,int>;
#define FOR(i,l,r) for(int i=(l); i<(r); i++)
#define rep(i,r) for(int i=0; i<(r); i++)
#define repl(i,r) for(long long i=0; i<(r); i++)
#define FORl(i,l,r) for(long long i=(l); i<(r); i++)
#define INFL ((1LL<<62)-(1LL<<31))
#define pb(x) push_back(x)
#define CIN(x) cin >> x

long long modinv(long long a, long long m) {
    long long b = m, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= m; 
    if (u < 0) u += m;
    return u;
}


int main(){
  ll N,M,P,Q;
  cin >> N >> M >> P >> Q;
  rep(q,Q){
    
    ll x,f;
    cin >> x >> f;
    if(x % P == 0){
      cout << 0 << endl;
      continue;
    }

    ll res = M/P;

    if(f != 0 &&M%P >= (f*modinv(x,P))%P) res++;
    //cout << "M%P" << M%P << " " << "p:" <<(f*modinv(x,P))%P << endl;
    cout << res << endl;

  }
  
}
0