結果

問題 No.2324 Two Countries within UEC
ユーザー yu7400kiyu7400ki
提出日時 2023-05-28 14:32:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-06-08 05:42:30
合計ジャッジ時間 41,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1,766 ms
13,696 KB
testcase_05 WA -
testcase_06 AC 752 ms
12,032 KB
testcase_07 WA -
testcase_08 AC 1,564 ms
13,184 KB
testcase_09 AC 1,555 ms
13,312 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 662 ms
11,904 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 337 ms
11,264 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 406 ms
11,392 KB
testcase_19 WA -
testcase_20 AC 290 ms
11,392 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 30 ms
10,624 KB
testcase_33 WA -
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 WA -
testcase_37 AC 28 ms
10,752 KB
testcase_38 AC 29 ms
10,752 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 WA -
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 = 0
    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