結果

問題 No.2324 Two Countries within UEC
ユーザー konchakoncha
提出日時 2023-05-28 17:12:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-06-26 23:30:34
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
86,656 KB
testcase_01 AC 267 ms
86,912 KB
testcase_02 AC 123 ms
78,336 KB
testcase_03 AC 223 ms
84,480 KB
testcase_04 AC 228 ms
85,376 KB
testcase_05 AC 126 ms
78,336 KB
testcase_06 AC 151 ms
80,128 KB
testcase_07 AC 123 ms
78,080 KB
testcase_08 AC 213 ms
84,352 KB
testcase_09 AC 215 ms
84,608 KB
testcase_10 AC 268 ms
86,784 KB
testcase_11 AC 260 ms
87,040 KB
testcase_12 AC 141 ms
78,848 KB
testcase_13 AC 143 ms
79,232 KB
testcase_14 AC 123 ms
78,720 KB
testcase_15 AC 121 ms
78,080 KB
testcase_16 AC 200 ms
83,584 KB
testcase_17 AC 165 ms
81,024 KB
testcase_18 AC 122 ms
78,464 KB
testcase_19 AC 255 ms
87,296 KB
testcase_20 AC 114 ms
76,928 KB
testcase_21 AC 180 ms
84,352 KB
testcase_22 AC 204 ms
87,040 KB
testcase_23 AC 128 ms
78,976 KB
testcase_24 AC 197 ms
84,992 KB
testcase_25 AC 261 ms
87,168 KB
testcase_26 AC 177 ms
86,656 KB
testcase_27 AC 182 ms
86,784 KB
testcase_28 AC 181 ms
86,784 KB
testcase_29 AC 182 ms
86,784 KB
testcase_30 AC 178 ms
86,784 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 39 ms
51,840 KB
testcase_34 AC 39 ms
51,840 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 AC 39 ms
51,840 KB
testcase_37 AC 39 ms
51,328 KB
testcase_38 AC 40 ms
51,968 KB
testcase_39 AC 39 ms
51,840 KB
testcase_40 AC 38 ms
51,712 KB
testcase_41 AC 39 ms
51,712 KB
testcase_42 AC 39 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())
querys = [list(map(int, input().split())) for _ in range(Q)]

for x, f in querys:
    x = x % P
    if x == 0:
        if f == 0:
            answer = M
        else:
            answer = 0
    else:
        answer = M // P
        y = (f * pow(x, P-2, P)) % P
        if y == 0: y = P
        if y <= (M%P):
            answer += 1
    print(answer)
0