結果

問題 No.2324 Two Countries within UEC
ユーザー miya145592miya145592
提出日時 2023-06-18 16:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 87,260 KB
最終ジャッジ日時 2024-06-26 23:38:38
合計ジャッジ時間 8,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
86,916 KB
testcase_01 AC 244 ms
87,260 KB
testcase_02 AC 103 ms
78,252 KB
testcase_03 AC 188 ms
84,672 KB
testcase_04 AC 210 ms
85,304 KB
testcase_05 AC 105 ms
78,244 KB
testcase_06 AC 134 ms
79,880 KB
testcase_07 AC 101 ms
77,012 KB
testcase_08 AC 195 ms
84,348 KB
testcase_09 AC 194 ms
84,148 KB
testcase_10 AC 249 ms
87,032 KB
testcase_11 AC 236 ms
86,792 KB
testcase_12 AC 124 ms
78,648 KB
testcase_13 AC 124 ms
79,132 KB
testcase_14 AC 103 ms
78,412 KB
testcase_15 AC 98 ms
77,500 KB
testcase_16 AC 185 ms
83,284 KB
testcase_17 AC 144 ms
80,604 KB
testcase_18 AC 104 ms
78,656 KB
testcase_19 AC 235 ms
87,028 KB
testcase_20 AC 94 ms
76,960 KB
testcase_21 AC 160 ms
84,152 KB
testcase_22 AC 186 ms
87,068 KB
testcase_23 AC 108 ms
78,824 KB
testcase_24 AC 168 ms
85,024 KB
testcase_25 AC 233 ms
86,784 KB
testcase_26 AC 164 ms
86,500 KB
testcase_27 AC 171 ms
87,044 KB
testcase_28 AC 163 ms
87,004 KB
testcase_29 AC 161 ms
86,624 KB
testcase_30 AC 160 ms
87,180 KB
testcase_31 AC 35 ms
52,428 KB
testcase_32 AC 36 ms
52,460 KB
testcase_33 AC 35 ms
53,244 KB
testcase_34 AC 37 ms
51,900 KB
testcase_35 AC 36 ms
52,308 KB
testcase_36 AC 34 ms
53,572 KB
testcase_37 AC 35 ms
52,272 KB
testcase_38 AC 36 ms
52,468 KB
testcase_39 AC 35 ms
52,832 KB
testcase_40 AC 36 ms
53,388 KB
testcase_41 AC 36 ms
51,816 KB
testcase_42 AC 35 ms
52,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, P, Q = map(int, input().split())
XF = [list(map(int, input().split())) for _ in range(Q)]
for x, f in XF:
    if x%P==0:
        if f==0:
            print(M)
        else:
            print(0)
    else:
        invx = pow(x, P-2, P)
        y = f * invx % P
        cnt = (M-y)//P - (-y)//P
        print(cnt)
0