結果

問題 No.2324 Two Countries within UEC
ユーザー koshihkarikoshihkari
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 WA -
testcase_22 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 AC 390 ms
84,084 KB
testcase_27 AC 392 ms
83,928 KB
testcase_28 AC 385 ms
84,216 KB
testcase_29 AC 386 ms
83,960 KB
testcase_30 AC 391 ms
83,956 KB
testcase_31 AC 67 ms
67,200 KB
testcase_32 AC 68 ms
66,688 KB
testcase_33 AC 66 ms
66,944 KB
testcase_34 AC 69 ms
67,072 KB
testcase_35 AC 68 ms
66,816 KB
testcase_36 AC 67 ms
66,944 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 67 ms
66,816 KB
testcase_40 AC 66 ms
66,944 KB
testcase_41 WA -
testcase_42 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
            
        
    
    
    
    
    
0