結果
| 問題 |
No.2324 Two Countries within UEC
|
| コンテスト | |
| ユーザー |
koshihkari
|
| 提出日時 | 2023-05-28 15:35:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 757 bytes |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 970,404 KB |
| 最終ジャッジ日時 | 2024-12-27 07:28:20 |
| 合計ジャッジ時間 | 82,684 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 WA * 6 TLE * 2 MLE * 22 |
ソースコード
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