結果

問題 No.2324 Two Countries within UEC
ユーザー sepa38sepa38
提出日時 2023-05-06 11:05:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-06-07 16:16:50
合計ジャッジ時間 10,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
75,780 KB
testcase_01 AC 378 ms
75,780 KB
testcase_02 AC 135 ms
76,180 KB
testcase_03 AC 297 ms
76,092 KB
testcase_04 AC 322 ms
76,464 KB
testcase_05 AC 138 ms
76,228 KB
testcase_06 AC 179 ms
76,564 KB
testcase_07 AC 126 ms
76,088 KB
testcase_08 AC 289 ms
76,284 KB
testcase_09 AC 296 ms
76,232 KB
testcase_10 AC 372 ms
76,212 KB
testcase_11 AC 363 ms
75,836 KB
testcase_12 AC 174 ms
76,460 KB
testcase_13 AC 163 ms
76,040 KB
testcase_14 AC 136 ms
75,992 KB
testcase_15 AC 125 ms
76,284 KB
testcase_16 AC 272 ms
76,700 KB
testcase_17 AC 215 ms
76,116 KB
testcase_18 AC 138 ms
76,020 KB
testcase_19 AC 369 ms
75,872 KB
testcase_20 AC 119 ms
76,168 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 368 ms
76,088 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 38 ms
52,604 KB
testcase_32 AC 37 ms
52,036 KB
testcase_33 AC 37 ms
52,416 KB
testcase_34 AC 38 ms
52,952 KB
testcase_35 AC 37 ms
51,944 KB
testcase_36 AC 37 ms
52,188 KB
testcase_37 AC 37 ms
52,760 KB
testcase_38 AC 39 ms
53,432 KB
testcase_39 AC 38 ms
52,752 KB
testcase_40 AC 38 ms
52,208 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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