結果
問題 | No.2324 Two Countries within UEC |
ユーザー | rts_tatsu |
提出日時 | 2023-05-28 16:14:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 929 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 36,224 KB |
最終ジャッジ日時 | 2024-06-08 09:23:47 |
合計ジャッジ時間 | 21,871 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,270 ms
36,224 KB |
testcase_01 | AC | 1,338 ms
31,360 KB |
testcase_02 | AC | 262 ms
14,464 KB |
testcase_03 | AC | 994 ms
26,368 KB |
testcase_04 | AC | 1,168 ms
28,672 KB |
testcase_05 | AC | 264 ms
14,848 KB |
testcase_06 | AC | 495 ms
18,176 KB |
testcase_07 | AC | 226 ms
13,952 KB |
testcase_08 | AC | 1,196 ms
26,624 KB |
testcase_09 | AC | 1,103 ms
27,008 KB |
testcase_10 | AC | 1,403 ms
31,360 KB |
testcase_11 | AC | 1,412 ms
31,360 KB |
testcase_12 | AC | 431 ms
17,152 KB |
testcase_13 | AC | 411 ms
17,024 KB |
testcase_14 | AC | 253 ms
14,592 KB |
testcase_15 | AC | 226 ms
13,952 KB |
testcase_16 | AC | 930 ms
24,576 KB |
testcase_17 | AC | 580 ms
19,584 KB |
testcase_18 | AC | 279 ms
14,848 KB |
testcase_19 | AC | 1,339 ms
31,360 KB |
testcase_20 | AC | 195 ms
13,440 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 | -- | - |
ソースコード
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)