結果

問題 No.2324 Two Countries within UEC
ユーザー NPNP
提出日時 2023-05-28 14:00:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 208 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 1,682,048 KB
最終ジャッジ日時 2024-12-26 22:42:58
合計ジャッジ時間 35,018 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N, M, P, Q = map(int, input().split())

counts = [0] * P
for y in range(1, M + 1):
    counts[y % P] += 1

for _ in range(Q):
    x, f = map(int, input().split())
    print(counts[(f * pow(x, P - 2, P)) % P])
0