結果

問題 No.2324 Two Countries within UEC
ユーザー qibqib
提出日時 2023-05-29 20:46:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-06-26 23:34:11
合計ジャッジ時間 10,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
76,140 KB
testcase_01 AC 371 ms
76,236 KB
testcase_02 AC 133 ms
76,700 KB
testcase_03 AC 292 ms
76,112 KB
testcase_04 AC 312 ms
76,096 KB
testcase_05 AC 131 ms
76,556 KB
testcase_06 AC 173 ms
76,120 KB
testcase_07 AC 123 ms
76,024 KB
testcase_08 AC 284 ms
76,468 KB
testcase_09 AC 288 ms
76,144 KB
testcase_10 AC 368 ms
75,908 KB
testcase_11 AC 351 ms
76,184 KB
testcase_12 AC 162 ms
76,224 KB
testcase_13 AC 163 ms
76,108 KB
testcase_14 AC 132 ms
76,240 KB
testcase_15 AC 124 ms
76,468 KB
testcase_16 AC 280 ms
76,572 KB
testcase_17 AC 211 ms
76,220 KB
testcase_18 AC 136 ms
75,992 KB
testcase_19 AC 362 ms
76,688 KB
testcase_20 AC 112 ms
76,088 KB
testcase_21 AC 257 ms
76,088 KB
testcase_22 AC 300 ms
76,176 KB
testcase_23 AC 147 ms
76,652 KB
testcase_24 AC 269 ms
76,048 KB
testcase_25 AC 359 ms
76,256 KB
testcase_26 AC 279 ms
76,312 KB
testcase_27 AC 286 ms
76,124 KB
testcase_28 AC 277 ms
76,616 KB
testcase_29 AC 278 ms
76,004 KB
testcase_30 AC 278 ms
75,988 KB
testcase_31 AC 36 ms
52,948 KB
testcase_32 AC 36 ms
52,660 KB
testcase_33 AC 36 ms
52,416 KB
testcase_34 AC 36 ms
52,532 KB
testcase_35 AC 38 ms
52,276 KB
testcase_36 AC 37 ms
52,708 KB
testcase_37 AC 37 ms
53,836 KB
testcase_38 AC 37 ms
53,380 KB
testcase_39 AC 35 ms
53,112 KB
testcase_40 AC 37 ms
52,336 KB
testcase_41 AC 36 ms
52,280 KB
testcase_42 AC 37 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for _ in range(q):
  x, f = map(int, input().split())
  if x % p == 0:
    if f == 0:
      print(m)
    else:
      print(0)
  else:
    y = (pow(x, p - 2, p) * f) % p
    lb = (1 - y + p - 1) // p
    ub = (m - y) // p
    print(max(0, ub - lb + 1))
0