結果

問題 No.2324 Two Countries within UEC
ユーザー kemunikukemuniku
提出日時 2023-05-28 14:23:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-26 23:22:22
合計ジャッジ時間 10,853 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
75,776 KB
testcase_01 AC 377 ms
76,032 KB
testcase_02 AC 144 ms
76,032 KB
testcase_03 AC 294 ms
76,160 KB
testcase_04 AC 326 ms
76,160 KB
testcase_05 AC 147 ms
76,032 KB
testcase_06 AC 191 ms
76,160 KB
testcase_07 AC 136 ms
76,160 KB
testcase_08 AC 287 ms
76,032 KB
testcase_09 AC 298 ms
76,032 KB
testcase_10 AC 378 ms
76,032 KB
testcase_11 AC 365 ms
76,032 KB
testcase_12 AC 177 ms
76,160 KB
testcase_13 AC 174 ms
76,032 KB
testcase_14 AC 140 ms
76,160 KB
testcase_15 AC 130 ms
75,904 KB
testcase_16 AC 286 ms
76,544 KB
testcase_17 AC 221 ms
76,672 KB
testcase_18 AC 143 ms
76,032 KB
testcase_19 AC 372 ms
76,032 KB
testcase_20 AC 125 ms
76,416 KB
testcase_21 AC 272 ms
76,288 KB
testcase_22 AC 317 ms
76,032 KB
testcase_23 AC 162 ms
75,776 KB
testcase_24 AC 288 ms
76,288 KB
testcase_25 AC 373 ms
75,776 KB
testcase_26 AC 287 ms
76,032 KB
testcase_27 AC 290 ms
76,288 KB
testcase_28 AC 292 ms
76,032 KB
testcase_29 AC 291 ms
76,288 KB
testcase_30 AC 297 ms
75,648 KB
testcase_31 AC 40 ms
51,328 KB
testcase_32 AC 40 ms
51,584 KB
testcase_33 AC 40 ms
51,840 KB
testcase_34 AC 40 ms
51,840 KB
testcase_35 AC 40 ms
51,456 KB
testcase_36 AC 39 ms
51,584 KB
testcase_37 AC 40 ms
51,456 KB
testcase_38 AC 39 ms
51,456 KB
testcase_39 AC 39 ms
51,584 KB
testcase_40 AC 40 ms
51,328 KB
testcase_41 AC 40 ms
51,584 KB
testcase_42 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,P,Q = map(int,input().split())
for i in range(Q):
    x,f = map(int,input().split())
    if x%P == 0:
        if f == 0:
            print(M)
        else:
            print(0)
    else:
        y = f*pow(x,P-2,P)%P
        if y == 0:
            y = P
        if y >M:
            print(0)
        else:
            print((M-y)//P+1)
        
0