結果

問題 No.2324 Two Countries within UEC
ユーザー AyunaAyuna
提出日時 2023-05-28 16:34:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-26 23:28:39
合計ジャッジ時間 11,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
76,544 KB
testcase_01 AC 405 ms
76,288 KB
testcase_02 AC 136 ms
76,416 KB
testcase_03 AC 339 ms
76,612 KB
testcase_04 AC 348 ms
76,416 KB
testcase_05 AC 141 ms
76,288 KB
testcase_06 AC 186 ms
76,376 KB
testcase_07 AC 130 ms
76,032 KB
testcase_08 AC 304 ms
76,416 KB
testcase_09 AC 312 ms
76,364 KB
testcase_10 AC 400 ms
76,800 KB
testcase_11 AC 385 ms
76,416 KB
testcase_12 AC 175 ms
76,544 KB
testcase_13 AC 171 ms
76,368 KB
testcase_14 AC 136 ms
76,564 KB
testcase_15 AC 129 ms
76,160 KB
testcase_16 AC 288 ms
76,800 KB
testcase_17 AC 220 ms
76,288 KB
testcase_18 AC 137 ms
76,884 KB
testcase_19 AC 395 ms
76,904 KB
testcase_20 AC 133 ms
76,032 KB
testcase_21 AC 279 ms
76,416 KB
testcase_22 AC 326 ms
76,684 KB
testcase_23 AC 162 ms
77,056 KB
testcase_24 AC 299 ms
76,416 KB
testcase_25 AC 388 ms
76,800 KB
testcase_26 AC 297 ms
76,416 KB
testcase_27 AC 287 ms
76,544 KB
testcase_28 AC 293 ms
76,288 KB
testcase_29 AC 302 ms
76,544 KB
testcase_30 AC 295 ms
76,160 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 36 ms
52,096 KB
testcase_33 AC 36 ms
51,968 KB
testcase_34 AC 36 ms
51,584 KB
testcase_35 AC 36 ms
52,224 KB
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 37 ms
51,968 KB
testcase_38 AC 36 ms
52,224 KB
testcase_39 AC 37 ms
52,224 KB
testcase_40 AC 37 ms
51,712 KB
testcase_41 AC 37 ms
51,584 KB
testcase_42 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n, m, p, q = map(int, input().split())
for _ in range(q):
    x, f = map(int, input().split())
    if f == 0:
        if math.gcd(p, x) == 1:
            print(m // p)
        else:
            print(m)
    elif math.gcd(p, x) != 1:
        print(0)
    else:
        x %= p
        y = f * pow(x, p - 2, p) % p
        print(m // p + (m % p >= y))
0