結果
問題 | No.2324 Two Countries within UEC |
ユーザー | yu7400ki |
提出日時 | 2023-05-28 14:32:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 425 bytes |
コンパイル時間 | 636 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-12-27 01:56:01 |
合計ジャッジ時間 | 44,296 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1,828 ms
13,696 KB |
testcase_05 | WA | - |
testcase_06 | AC | 778 ms
12,032 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,623 ms
13,312 KB |
testcase_09 | AC | 1,647 ms
13,184 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 672 ms
11,776 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 349 ms
11,136 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 423 ms
11,392 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 304 ms
11,264 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 | 29 ms
10,624 KB |
testcase_33 | WA | - |
testcase_34 | AC | 28 ms
10,496 KB |
testcase_35 | AC | 28 ms
10,624 KB |
testcase_36 | WA | - |
testcase_37 | AC | 28 ms
10,624 KB |
testcase_38 | AC | 29 ms
10,624 KB |
testcase_39 | AC | 29 ms
10,496 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
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")