結果

問題 No.2324 Two Countries within UEC
ユーザー ばけかぼちゃばけかぼちゃ
提出日時 2023-05-28 14:42:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 282 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 821,376 KB
最終ジャッジ日時 2024-12-27 02:40:21
合計ジャッジ時間 18,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n, m, p, q = map(int, input().split())
count = [0] * m

for i in range(1, n + 1):
    mod_val = (i % p)
    for j in range(1, m + 1):
        if (mod_val * (j % p)) % p == f:
            count[j-1] += 1

for _ in range(q):
    x, f = map(int, input().split())
    print(count[x-1])
0