結果

問題 No.2324 Two Countries within UEC
ユーザー NPNP
提出日時 2023-05-28 14:26:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 250 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 1,689,312 KB
最終ジャッジ日時 2024-12-27 01:14:48
合計ジャッジ時間 41,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 MLE -
testcase_02 TLE -
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 TLE -
testcase_14 TLE -
testcase_15 RE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 RE -
testcase_19 MLE -
testcase_20 RE -
testcase_21 MLE -
testcase_22 TLE -
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 AC 79 ms
51,328 KB
testcase_32 AC 41 ms
51,584 KB
testcase_33 AC 41 ms
51,808 KB
testcase_34 AC 40 ms
51,712 KB
testcase_35 AC 39 ms
51,584 KB
testcase_36 AC 43 ms
51,456 KB
testcase_37 AC 39 ms
51,328 KB
testcase_38 AC 39 ms
51,456 KB
testcase_39 AC 39 ms
51,712 KB
testcase_40 AC 41 ms
51,328 KB
testcase_41 AC 42 ms
51,840 KB
testcase_42 AC 41 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())
ymodP = [y % P for y in range(1, M+1)]

for _ in range(Q):
    xi, fi = map(int, input().split())
    count = 0
    for ymodp in ymodP:
        if (xi * ymodp) % P == fi:
            count += 1
    print(count)
0