結果

問題 No.2324 Two Countries within UEC
ユーザー lloyzlloyz
提出日時 2023-06-03 01:42:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 371 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-06-09 03:03:10
合計ジャッジ時間 9,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
76,600 KB
testcase_01 AC 314 ms
76,192 KB
testcase_02 AC 109 ms
76,484 KB
testcase_03 AC 252 ms
76,036 KB
testcase_04 AC 271 ms
76,368 KB
testcase_05 AC 115 ms
76,292 KB
testcase_06 AC 168 ms
76,252 KB
testcase_07 AC 117 ms
76,004 KB
testcase_08 AC 242 ms
76,160 KB
testcase_09 AC 258 ms
76,652 KB
testcase_10 AC 324 ms
76,272 KB
testcase_11 AC 310 ms
75,972 KB
testcase_12 AC 141 ms
76,208 KB
testcase_13 AC 140 ms
76,036 KB
testcase_14 AC 115 ms
76,480 KB
testcase_15 AC 104 ms
76,400 KB
testcase_16 AC 253 ms
76,528 KB
testcase_17 AC 178 ms
76,368 KB
testcase_18 AC 112 ms
76,264 KB
testcase_19 AC 314 ms
76,036 KB
testcase_20 AC 99 ms
76,616 KB
testcase_21 WA -
testcase_22 AC 264 ms
76,204 KB
testcase_23 AC 139 ms
76,160 KB
testcase_24 WA -
testcase_25 AC 331 ms
76,500 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 31 ms
53,768 KB
testcase_32 AC 32 ms
54,172 KB
testcase_33 AC 31 ms
52,388 KB
testcase_34 AC 30 ms
52,212 KB
testcase_35 AC 32 ms
53,400 KB
testcase_36 AC 31 ms
53,496 KB
testcase_37 AC 29 ms
52,976 KB
testcase_38 AC 30 ms
53,208 KB
testcase_39 AC 29 ms
52,196 KB
testcase_40 AC 30 ms
52,436 KB
testcase_41 AC 30 ms
52,916 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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(c)
        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