結果

問題 No.2324 Two Countries within UEC
ユーザー masa_aamasa_aa
提出日時 2023-05-28 13:49:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-06-26 23:17:42
合計ジャッジ時間 10,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
76,140 KB
testcase_01 AC 362 ms
76,000 KB
testcase_02 AC 126 ms
76,184 KB
testcase_03 AC 283 ms
76,236 KB
testcase_04 AC 311 ms
76,088 KB
testcase_05 AC 130 ms
76,116 KB
testcase_06 AC 174 ms
76,020 KB
testcase_07 AC 123 ms
76,232 KB
testcase_08 AC 292 ms
76,476 KB
testcase_09 AC 290 ms
76,652 KB
testcase_10 AC 364 ms
76,540 KB
testcase_11 AC 347 ms
76,628 KB
testcase_12 AC 160 ms
75,988 KB
testcase_13 AC 160 ms
76,176 KB
testcase_14 AC 125 ms
76,136 KB
testcase_15 AC 120 ms
75,912 KB
testcase_16 AC 266 ms
76,096 KB
testcase_17 AC 201 ms
76,240 KB
testcase_18 AC 128 ms
76,032 KB
testcase_19 AC 362 ms
76,012 KB
testcase_20 AC 109 ms
76,072 KB
testcase_21 AC 258 ms
76,108 KB
testcase_22 AC 305 ms
76,392 KB
testcase_23 AC 148 ms
76,400 KB
testcase_24 AC 272 ms
76,032 KB
testcase_25 AC 354 ms
76,036 KB
testcase_26 AC 277 ms
76,680 KB
testcase_27 AC 280 ms
76,444 KB
testcase_28 AC 283 ms
76,700 KB
testcase_29 AC 278 ms
76,072 KB
testcase_30 AC 281 ms
76,372 KB
testcase_31 AC 35 ms
53,556 KB
testcase_32 AC 35 ms
53,032 KB
testcase_33 AC 36 ms
53,200 KB
testcase_34 AC 37 ms
52,556 KB
testcase_35 AC 35 ms
52,956 KB
testcase_36 AC 35 ms
52,224 KB
testcase_37 AC 36 ms
52,708 KB
testcase_38 AC 35 ms
52,520 KB
testcase_39 AC 36 ms
52,508 KB
testcase_40 AC 36 ms
52,824 KB
testcase_41 AC 36 ms
53,568 KB
testcase_42 AC 37 ms
52,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())
for _ in range(q):
    x, f = map(int, input().split())
    x %= p
    if x == 0:
        if f == 0:
            print(m)
        else:
            print(0)

    else:
        y = f * pow(x, p - 2, p) % p
        if y == 0:
            print(m // p)
        else:
            print((m - y + p) // p)
0