結果

問題 No.2324 Two Countries within UEC
ユーザー colognecologne
提出日時 2023-08-05 12:42:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-15 09:48:29
合計ジャッジ時間 13,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 384 ms
76,032 KB
testcase_01 AC 398 ms
76,208 KB
testcase_02 AC 149 ms
76,364 KB
testcase_03 AC 314 ms
75,864 KB
testcase_04 AC 364 ms
76,032 KB
testcase_05 AC 154 ms
76,288 KB
testcase_06 AC 200 ms
76,032 KB
testcase_07 AC 141 ms
76,160 KB
testcase_08 AC 319 ms
76,032 KB
testcase_09 AC 336 ms
76,544 KB
testcase_10 AC 410 ms
76,288 KB
testcase_11 AC 395 ms
76,032 KB
testcase_12 AC 187 ms
76,288 KB
testcase_13 AC 182 ms
76,416 KB
testcase_14 AC 154 ms
76,032 KB
testcase_15 AC 145 ms
76,032 KB
testcase_16 AC 306 ms
75,776 KB
testcase_17 AC 225 ms
76,416 KB
testcase_18 AC 155 ms
76,544 KB
testcase_19 AC 403 ms
76,032 KB
testcase_20 AC 137 ms
77,440 KB
testcase_21 AC 314 ms
76,288 KB
testcase_22 AC 381 ms
75,904 KB
testcase_23 AC 182 ms
75,904 KB
testcase_24 AC 329 ms
76,160 KB
testcase_25 AC 404 ms
76,032 KB
testcase_26 AC 288 ms
76,160 KB
testcase_27 AC 288 ms
75,904 KB
testcase_28 AC 295 ms
76,544 KB
testcase_29 AC 291 ms
75,776 KB
testcase_30 AC 295 ms
76,160 KB
testcase_31 AC 39 ms
51,456 KB
testcase_32 AC 38 ms
51,456 KB
testcase_33 AC 39 ms
51,456 KB
testcase_34 AC 38 ms
51,328 KB
testcase_35 AC 39 ms
51,712 KB
testcase_36 AC 39 ms
51,840 KB
testcase_37 AC 39 ms
51,584 KB
testcase_38 AC 40 ms
51,456 KB
testcase_39 AC 39 ms
51,968 KB
testcase_40 AC 40 ms
51,456 KB
testcase_41 AC 40 ms
51,840 KB
testcase_42 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


if __name__ == '__main__':
    main()
0