結果

問題 No.2324 Two Countries within UEC
ユーザー InTheBloomInTheBloom
提出日時 2023-05-28 14:40:29
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 172,928 KB
実行使用メモリ 809,088 KB
最終ジャッジ日時 2024-06-22 18:02:01
合計ジャッジ時間 9,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
6,812 KB
testcase_01 AC 201 ms
6,940 KB
testcase_02 AC 35 ms
6,944 KB
testcase_03 AC 145 ms
6,940 KB
testcase_04 AC 159 ms
6,944 KB
testcase_05 AC 38 ms
6,940 KB
testcase_06 AC 65 ms
6,940 KB
testcase_07 AC 31 ms
6,940 KB
testcase_08 AC 134 ms
6,940 KB
testcase_09 AC 140 ms
6,944 KB
testcase_10 AC 210 ms
6,940 KB
testcase_11 AC 200 ms
6,940 KB
testcase_12 AC 65 ms
6,940 KB
testcase_13 AC 59 ms
6,944 KB
testcase_14 AC 40 ms
6,940 KB
testcase_15 AC 33 ms
6,940 KB
testcase_16 AC 144 ms
6,940 KB
testcase_17 AC 92 ms
6,944 KB
testcase_18 AC 37 ms
6,944 KB
testcase_19 AC 200 ms
6,940 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 193 ms
6,944 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,948 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 WA -
testcase_42 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    long N, M, P, Q;
    {
        auto buf = readln.split.to!(long[]);
        N = buf[0], M = buf[1], P = buf[2], Q = buf[3];
    }
    solve(N, M, P, Q);
}

void solve (long N, long M, long P, long Q) {
    foreach (_; 0..Q) {
        auto buf = readln.split.to!(long[]);
        long x = buf[0], f = buf[1];

        if (x % P != 0) {
        // x^{-1}が存在
            long inv_x = modinv(x, P);
            long modular = (f * inv_x) % P;
            // y == modular(MOD P)

            if (M < modular) {
                writeln(0);
            } else if (modular != 0) {
                writeln(1 + (M - modular)/P);
            } else {
                writeln((M - modular)/P);
            }
        } else {
        // x^{-1}が存在しない(任意のyについて親交度がf_iである)
            writeln(M);
        }
    }
}

long modpow (long x, long a, const long MOD) {
    if (a == 1) {
        return x;
    }
    if (a % 2 == 1) {
        return (x * modpow(x, a-1, MOD)) % MOD;
    }
    long t = modpow(x, a/2, MOD);
    return (t * t) % MOD;
}

long modinv (long x, const long MOD) {
    return modpow(x, MOD - 2, MOD);
}
0