結果

問題 No.2324 Two Countries within UEC
ユーザー yu7400kiyu7400ki
提出日時 2023-05-28 14:40:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,312 KB
最終ジャッジ日時 2024-06-08 05:56:06
合計ジャッジ時間 7,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
81,792 KB
testcase_01 AC 224 ms
81,928 KB
testcase_02 AC 92 ms
76,944 KB
testcase_03 AC 178 ms
81,152 KB
testcase_04 AC 191 ms
80,352 KB
testcase_05 AC 99 ms
76,928 KB
testcase_06 AC 120 ms
78,976 KB
testcase_07 AC 90 ms
76,160 KB
testcase_08 AC 176 ms
81,536 KB
testcase_09 AC 177 ms
81,664 KB
testcase_10 AC 224 ms
81,672 KB
testcase_11 AC 211 ms
81,836 KB
testcase_12 AC 114 ms
78,000 KB
testcase_13 AC 119 ms
78,404 KB
testcase_14 AC 96 ms
76,976 KB
testcase_15 AC 90 ms
76,232 KB
testcase_16 AC 173 ms
80,896 KB
testcase_17 AC 137 ms
79,812 KB
testcase_18 AC 98 ms
77,312 KB
testcase_19 AC 214 ms
82,304 KB
testcase_20 AC 88 ms
76,608 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 213 ms
82,312 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 35 ms
52,096 KB
testcase_32 AC 36 ms
51,584 KB
testcase_33 AC 38 ms
52,096 KB
testcase_34 AC 38 ms
51,712 KB
testcase_35 AC 38 ms
51,968 KB
testcase_36 AC 35 ms
51,968 KB
testcase_37 AC 34 ms
52,352 KB
testcase_38 AC 37 ms
52,096 KB
testcase_39 AC 36 ms
52,480 KB
testcase_40 AC 35 ms
52,224 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())

def mod_div(a, b, p):
    return (a * pow(b, p - 2, p)) % p

ans = []
for _ in range(Q):
    x, f = map(int, input().split())
    y = mod_div(f, x, P)
    if y == 0:
        y = P
    ok = -1
    ng = M
    while ng - ok > 1:
        mid = (ok + ng) // 2
        if P * mid + y <= M:
            ok = mid
        else:
            ng = mid
    ans.append(ok + 1)

print(*ans, sep="\n")
0