結果
| 問題 | No.2324 Two Countries within UEC |
| コンテスト | |
| ユーザー |
koshihkari
|
| 提出日時 | 2023-05-28 15:35:03 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 757 bytes |
| 記録 | |
| コンパイル時間 | 166 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 659,804 KB |
| 最終ジャッジ日時 | 2026-06-01 23:15:34 |
| 合計ジャッジ時間 | 7,385 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 2 |
| other | MLE * 1 -- * 40 |
ソースコード
import queue
n, m, p, q = map(int, input().split())
query = queue.Queue()
for _ in range(q):
x, f = map(int, input().split())
query.put((x, f))
for _ in range(q):
x, f = query.get()
que = queue.Queue()
s = set()
count = 0
j = 0
for y in range(1, m+1):
c = (x * y) % p
if c == f:
start_index = y
j = 1
if not c in s:
s.add(c)
else:
f_in = f in s
if not f_in:
print(0)
break
d = len(s)
show = m // d
if m % d > start_index:
show += 1
print(show)
break
else:
print(j)
koshihkari