結果

問題 No.2324 Two Countries within UEC
ユーザー NPNP
提出日時 2023-05-28 14:29:22
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 411 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 1,361,996 KB
最終ジャッジ日時 2024-12-27 01:38:44
合計ジャッジ時間 92,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

ymodP_count = {}
for y in range(1, M+1):
    ymodp = y % P
    if ymodp in ymodP_count:
        ymodP_count[ymodp] += 1
    else:
        ymodP_count[ymodp] = 1

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

    print(count)
0