結果

問題 No.2324 Two Countries within UEC
ユーザー SchneeSchnee
提出日時 2023-05-28 15:35:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 298 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 1,599,200 KB
最終ジャッジ日時 2024-12-27 07:26:23
合計ジャッジ時間 34,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 RE -
testcase_02 MLE -
testcase_03 TLE -
testcase_04 RE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 RE -
testcase_16 RE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 RE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 RE -
testcase_24 MLE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 RE -
testcase_31 AC 68 ms
10,496 KB
testcase_32 AC 33 ms
10,496 KB
testcase_33 AC 33 ms
10,496 KB
testcase_34 AC 33 ms
10,368 KB
testcase_35 AC 33 ms
10,496 KB
testcase_36 AC 34 ms
10,496 KB
testcase_37 AC 30 ms
10,496 KB
testcase_38 AC 30 ms
10,496 KB
testcase_39 AC 30 ms
10,368 KB
testcase_40 AC 30 ms
10,368 KB
testcase_41 WA -
testcase_42 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())

inv = [0]*(n+1)
for i in range(1, n+1):
    inv[i] = pow(i, p-2, p)

for _ in range(q):
    x, f = map(int, input().split())
    y_cand = f*inv[x]%p
    if y_cand == 0:
        y_cnt = m//p
    else:
        y_cnt = m//p + int(m%p >= y_cand)
    print(y_cnt)
0