結果

問題 No.2324 Two Countries within UEC
ユーザー rts_tatsurts_tatsu
提出日時 2023-05-28 16:00:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 747 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-06-08 09:12:01
合計ジャッジ時間 20,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,170 ms
35,456 KB
testcase_01 AC 1,262 ms
30,464 KB
testcase_02 AC 236 ms
14,208 KB
testcase_03 AC 915 ms
25,728 KB
testcase_04 AC 1,089 ms
27,648 KB
testcase_05 AC 242 ms
14,464 KB
testcase_06 AC 443 ms
17,408 KB
testcase_07 AC 213 ms
13,824 KB
testcase_08 AC 1,030 ms
25,728 KB
testcase_09 AC 998 ms
26,112 KB
testcase_10 AC 1,311 ms
30,464 KB
testcase_11 AC 1,271 ms
30,592 KB
testcase_12 AC 392 ms
16,640 KB
testcase_13 AC 399 ms
16,640 KB
testcase_14 AC 242 ms
14,080 KB
testcase_15 AC 217 ms
13,696 KB
testcase_16 AC 876 ms
24,064 KB
testcase_17 AC 556 ms
19,200 KB
testcase_18 AC 261 ms
14,592 KB
testcase_19 AC 1,305 ms
30,336 KB
testcase_20 AC 182 ms
13,184 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
        for k in range((m - y0) // p_div_d + 1):
            y = y0 + k * p_div_d
            if 1 <= y <= m:
                count += 1
        return count
    
N, M, P, Q = map(int, input().split())
queries = [list(map(int, input().split())) for _ in range(Q)]

for x, f in queries:
    result = count_valid_y(N, M, x, P, f)
    print(result)
0