結果

問題 No.2324 Two Countries within UEC
ユーザー stunniitastunniita
提出日時 2023-05-28 14:41:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-27 02:32:53
合計ジャッジ時間 25,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,094 ms
10,496 KB
testcase_01 AC 1,156 ms
10,496 KB
testcase_02 AC 227 ms
10,496 KB
testcase_03 AC 850 ms
10,496 KB
testcase_04 AC 926 ms
10,368 KB
testcase_05 AC 229 ms
10,368 KB
testcase_06 AC 406 ms
10,368 KB
testcase_07 AC 202 ms
10,624 KB
testcase_08 AC 996 ms
10,496 KB
testcase_09 AC 884 ms
10,496 KB
testcase_10 AC 1,185 ms
10,496 KB
testcase_11 AC 1,114 ms
10,496 KB
testcase_12 AC 360 ms
10,496 KB
testcase_13 AC 351 ms
10,368 KB
testcase_14 AC 223 ms
10,496 KB
testcase_15 AC 194 ms
10,496 KB
testcase_16 AC 762 ms
10,496 KB
testcase_17 AC 501 ms
10,368 KB
testcase_18 AC 228 ms
10,496 KB
testcase_19 AC 1,116 ms
10,496 KB
testcase_20 AC 159 ms
10,368 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,129 ms
10,496 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 28 ms
10,368 KB
testcase_32 AC 28 ms
10,368 KB
testcase_33 AC 27 ms
10,368 KB
testcase_34 AC 28 ms
10,496 KB
testcase_35 AC 28 ms
10,368 KB
testcase_36 AC 28 ms
10,368 KB
testcase_37 AC 26 ms
10,368 KB
testcase_38 AC 28 ms
10,496 KB
testcase_39 AC 26 ms
10,496 KB
testcase_40 AC 30 ms
10,496 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P,Q = map(int, input().split())

# (x * y) % P = f
# n^(P-1) mod P = 1
# given x and f, y = ?

# x * x^(P-2) mod P = 1
# x * f * x^(P-2) mod P = f

for _ in range(Q):
    x,f = map(int, input().split())
    y = (f * pow(x,P-2,P)) % P
    #print(f"{y=}")
    #assert x * y % P == f
    if y == 0: y = P
    """
    count = 0
    while True:
        #print(f"{y=}")
        if y > M:break
        count += 1
        y += P

    #print(f"{count=}")
    print(count)
    """
    #print(f"{y=}")
    print((M-y)//P +1)


0