結果

問題 No.2324 Two Countries within UEC
ユーザー hiikunZhiikunZ
提出日時 2023-05-28 13:36:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,089 bytes
コンパイル時間 3,322 ms
コンパイル使用メモリ 216,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 23:11:24
合計ジャッジ時間 8,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
6,812 KB
testcase_01 AC 218 ms
6,940 KB
testcase_02 AC 41 ms
6,940 KB
testcase_03 AC 155 ms
6,944 KB
testcase_04 AC 178 ms
6,940 KB
testcase_05 AC 41 ms
6,940 KB
testcase_06 AC 75 ms
6,944 KB
testcase_07 AC 34 ms
6,944 KB
testcase_08 AC 158 ms
6,940 KB
testcase_09 AC 161 ms
6,940 KB
testcase_10 AC 215 ms
6,940 KB
testcase_11 AC 205 ms
6,940 KB
testcase_12 AC 69 ms
6,944 KB
testcase_13 AC 62 ms
6,944 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 33 ms
6,940 KB
testcase_16 AC 142 ms
6,940 KB
testcase_17 AC 90 ms
6,940 KB
testcase_18 AC 42 ms
6,944 KB
testcase_19 AC 211 ms
6,940 KB
testcase_20 AC 28 ms
6,940 KB
testcase_21 AC 132 ms
6,940 KB
testcase_22 AC 165 ms
6,944 KB
testcase_23 AC 55 ms
6,940 KB
testcase_24 AC 140 ms
6,940 KB
testcase_25 AC 211 ms
6,940 KB
testcase_26 AC 139 ms
6,944 KB
testcase_27 AC 149 ms
6,940 KB
testcase_28 AC 140 ms
6,940 KB
testcase_29 AC 141 ms
6,940 KB
testcase_30 AC 139 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
using namespace std;
using ll = long long int;
using ull = unsigned long long int;
using ld = long double;
ll modinv(ll A,ll M){
    //A*r+B*n=gcd(A,B)
    A %= M;
    if(A == 0 || __gcd(A,M) != 1){
        //cout << "Error modinv(" << A << "," << M << ")" << endl;
        return -1;
    }
    ll B = M,U = 1,V = 0;
    while(B){
        ll 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(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll N,M,P,Q;
    cin >> N >> M >> P >> Q;
    for(ll q = 0;q < Q;q++){
        ll x,f;
        cin >> x >> f;
        x %= P;
        if(x == 0){
            if(f == 0) cout << M << endl;
            else cout << 0 << endl;
        }
        else{
            ll y = (f * modinv(x,P)) % P;
            ll ans = M / P;
            if(y != 0 && y <= M % P) ans++;
            cout << ans << endl;
        }
    }
}
0