結果

問題 No.2324 Two Countries within UEC
ユーザー stunniitastunniita
提出日時 2023-05-28 14:41:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 05:59:32
合計ジャッジ時間 22,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,021 ms
10,624 KB
testcase_01 AC 1,068 ms
10,752 KB
testcase_02 AC 206 ms
10,368 KB
testcase_03 AC 788 ms
10,368 KB
testcase_04 AC 873 ms
10,240 KB
testcase_05 AC 221 ms
10,240 KB
testcase_06 AC 369 ms
10,496 KB
testcase_07 AC 179 ms
10,496 KB
testcase_08 AC 773 ms
10,752 KB
testcase_09 AC 787 ms
10,368 KB
testcase_10 AC 1,068 ms
10,624 KB
testcase_11 AC 1,076 ms
10,496 KB
testcase_12 AC 325 ms
10,368 KB
testcase_13 AC 327 ms
10,624 KB
testcase_14 AC 208 ms
10,368 KB
testcase_15 AC 179 ms
10,368 KB
testcase_16 AC 718 ms
10,496 KB
testcase_17 AC 480 ms
10,368 KB
testcase_18 AC 216 ms
10,624 KB
testcase_19 AC 1,054 ms
10,496 KB
testcase_20 AC 146 ms
10,368 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,050 ms
10,368 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 27 ms
10,368 KB
testcase_32 AC 28 ms
10,496 KB
testcase_33 AC 28 ms
10,368 KB
testcase_34 AC 27 ms
10,240 KB
testcase_35 AC 27 ms
10,496 KB
testcase_36 AC 26 ms
10,496 KB
testcase_37 AC 27 ms
10,368 KB
testcase_38 AC 27 ms
10,496 KB
testcase_39 AC 26 ms
10,368 KB
testcase_40 AC 28 ms
10,368 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