結果
| 問題 |
No.2324 Two Countries within UEC
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-28 15:20:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 469 bytes |
| コンパイル時間 | 370 ms |
| コンパイル使用メモリ | 82,320 KB |
| 実行使用メモリ | 76,960 KB |
| 最終ジャッジ日時 | 2024-12-27 06:03:16 |
| 合計ジャッジ時間 | 11,597 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 WA * 12 |
ソースコード
def INT():
return int(input())
def MI():
return map(int, input().split())
def LI():
return list(map(int, input().split()))
import math
N, M, P, Q = MI()
for i in range(Q):
x, f = MI()
a = f
x_inv = pow(x, P - 2, P)
y_min = (a * x_inv) % P
if y_min == 0:
y_min += P
if M < y_min:
print(0)
elif M == y_min:
print(1)
else:
print(math.ceil((M - y_min) / P))