結果

問題 No.2324 Two Countries within UEC
ユーザー sepa38sepa38
提出日時 2023-05-27 13:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-26 23:11:14
合計ジャッジ時間 10,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
76,032 KB
testcase_01 AC 369 ms
76,032 KB
testcase_02 AC 132 ms
76,088 KB
testcase_03 AC 285 ms
76,044 KB
testcase_04 AC 317 ms
76,112 KB
testcase_05 AC 136 ms
76,032 KB
testcase_06 AC 179 ms
76,672 KB
testcase_07 AC 128 ms
76,160 KB
testcase_08 AC 287 ms
76,160 KB
testcase_09 AC 294 ms
76,108 KB
testcase_10 AC 369 ms
76,160 KB
testcase_11 AC 349 ms
76,020 KB
testcase_12 AC 169 ms
75,900 KB
testcase_13 AC 162 ms
76,084 KB
testcase_14 AC 133 ms
76,160 KB
testcase_15 AC 124 ms
76,032 KB
testcase_16 AC 272 ms
76,160 KB
testcase_17 AC 207 ms
76,160 KB
testcase_18 AC 135 ms
75,988 KB
testcase_19 AC 385 ms
76,032 KB
testcase_20 AC 116 ms
76,032 KB
testcase_21 AC 261 ms
76,032 KB
testcase_22 AC 314 ms
75,728 KB
testcase_23 AC 151 ms
76,288 KB
testcase_24 AC 274 ms
76,288 KB
testcase_25 AC 358 ms
76,288 KB
testcase_26 AC 275 ms
76,672 KB
testcase_27 AC 285 ms
76,384 KB
testcase_28 AC 284 ms
76,368 KB
testcase_29 AC 285 ms
76,160 KB
testcase_30 AC 282 ms
75,984 KB
testcase_31 AC 39 ms
51,712 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 38 ms
52,352 KB
testcase_35 AC 38 ms
51,584 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 AC 38 ms
52,232 KB
testcase_38 AC 39 ms
51,968 KB
testcase_39 AC 39 ms
51,840 KB
testcase_40 AC 38 ms
51,868 KB
testcase_41 AC 37 ms
51,968 KB
testcase_42 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, p, q = map(int, input().split())
assert 1 <= n <= 10 ** 9
assert 1 <= m <= 10 ** 9
assert 2 <= p <= 10 ** 9
assert 1 <= q <= 10 ** 5
for _ in range(q):
  x, f = map(int, input().split())
  assert 1 <= x <= n
  assert 0 <= f <= p - 1
  if x % p == 0:
    print(0 if f else m)
    continue
  y = f * pow(x, p-2, p) % p
  print(m // p if y == 0 or y > m % p else m // p + 1)
0