結果

問題 No.2324 Two Countries within UEC
ユーザー rts_tatsurts_tatsu
提出日時 2023-05-28 16:19:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 928 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,832 KB
実行使用メモリ 99,200 KB
最終ジャッジ日時 2024-06-08 09:27:19
合計ジャッジ時間 10,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 385 ms
99,200 KB
testcase_01 AC 387 ms
93,568 KB
testcase_02 AC 156 ms
79,104 KB
testcase_03 AC 340 ms
89,344 KB
testcase_04 AC 353 ms
91,264 KB
testcase_05 AC 159 ms
79,600 KB
testcase_06 AC 204 ms
82,048 KB
testcase_07 AC 203 ms
79,104 KB
testcase_08 AC 349 ms
89,344 KB
testcase_09 AC 332 ms
89,672 KB
testcase_10 AC 396 ms
93,312 KB
testcase_11 AC 436 ms
94,592 KB
testcase_12 AC 197 ms
81,472 KB
testcase_13 AC 192 ms
81,280 KB
testcase_14 AC 178 ms
79,104 KB
testcase_15 AC 155 ms
78,900 KB
testcase_16 AC 298 ms
87,808 KB
testcase_17 AC 358 ms
84,076 KB
testcase_18 AC 234 ms
80,128 KB
testcase_19 AC 385 ms
93,568 KB
testcase_20 AC 142 ms
78,356 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extended_gcd(a, b):
    if b == 0:
        return a, 1, 0
    else:
        d, x, y = extended_gcd(b, a % b)
        return d, y, x - (a // b) * y

def count_valid_y(n, m, x, p, f):
    d, _, _ = extended_gcd(x, p)
    if f % d != 0:
        return 0
    else:
        p_div_d = p // d
        f_div_d = f // d
        y0 = (f_div_d * extended_gcd(x // d, p_div_d)[1]) % p_div_d
        count = 0
        if y0 == 0:
            y0 = p_div_d
        while y0 <= m:
            if (x * y0) % p == f:
                count += 1
            y0 += p_div_d
        return count

def solve(N, M, P, Q, queries):
    results = []
    for x, f in queries:
        result = count_valid_y(N, M, x, P, f)
        results.append(result)
    return results

N, M, P, Q = map(int, input().split())
queries = [list(map(int, input().split())) for _ in range(Q)]

results = solve(N, M, P, Q, queries)
for result in results:
    print(result)
0