結果

問題 No.2324 Two Countries within UEC
ユーザー lloyzlloyz
提出日時 2023-06-03 01:44:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-26 23:35:26
合計ジャッジ時間 9,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
76,288 KB
testcase_01 AC 348 ms
76,800 KB
testcase_02 AC 121 ms
76,288 KB
testcase_03 AC 282 ms
76,160 KB
testcase_04 AC 301 ms
76,416 KB
testcase_05 AC 130 ms
76,032 KB
testcase_06 AC 166 ms
76,244 KB
testcase_07 AC 114 ms
76,396 KB
testcase_08 AC 266 ms
76,544 KB
testcase_09 AC 275 ms
76,576 KB
testcase_10 AC 346 ms
76,160 KB
testcase_11 AC 333 ms
76,160 KB
testcase_12 AC 160 ms
76,364 KB
testcase_13 AC 153 ms
76,092 KB
testcase_14 AC 124 ms
76,504 KB
testcase_15 AC 120 ms
76,160 KB
testcase_16 AC 257 ms
76,416 KB
testcase_17 AC 194 ms
76,416 KB
testcase_18 AC 127 ms
76,160 KB
testcase_19 AC 345 ms
76,544 KB
testcase_20 AC 113 ms
76,544 KB
testcase_21 AC 248 ms
76,208 KB
testcase_22 AC 290 ms
75,948 KB
testcase_23 AC 147 ms
76,160 KB
testcase_24 AC 262 ms
76,416 KB
testcase_25 AC 343 ms
75,912 KB
testcase_26 AC 270 ms
76,032 KB
testcase_27 AC 267 ms
76,160 KB
testcase_28 AC 269 ms
76,032 KB
testcase_29 AC 268 ms
76,032 KB
testcase_30 AC 268 ms
76,428 KB
testcase_31 AC 37 ms
51,712 KB
testcase_32 AC 36 ms
51,968 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 36 ms
51,584 KB
testcase_35 AC 34 ms
51,968 KB
testcase_36 AC 34 ms
51,712 KB
testcase_37 AC 34 ms
52,224 KB
testcase_38 AC 35 ms
51,968 KB
testcase_39 AC 36 ms
51,712 KB
testcase_40 AC 33 ms
51,968 KB
testcase_41 AC 35 ms
51,456 KB
testcase_42 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())
c, r = divmod(m, p)
for _ in range(q):
    x, f = map(int, input().split())
    if x % p == 0:
        if f % p != 0:
            print(0)
        else:
            print(m)
        continue
    y = f * pow(x, p - 2, p) % p
    if y <= r:
        ans = c + 1
    else:
        ans = c
    if y == 0:
        ans -= 1
    print(ans)
0