結果

問題 No.2324 Two Countries within UEC
ユーザー naut3naut3
提出日時 2023-09-30 13:37:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-07-23 07:39:47
合計ジャッジ時間 19,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 811 ms
29,952 KB
testcase_01 AC 885 ms
30,592 KB
testcase_02 AC 172 ms
14,464 KB
testcase_03 AC 635 ms
25,856 KB
testcase_04 AC 704 ms
28,032 KB
testcase_05 AC 186 ms
14,592 KB
testcase_06 AC 306 ms
17,792 KB
testcase_07 AC 156 ms
13,952 KB
testcase_08 AC 605 ms
25,984 KB
testcase_09 AC 621 ms
26,368 KB
testcase_10 AC 893 ms
30,592 KB
testcase_11 AC 829 ms
30,592 KB
testcase_12 AC 272 ms
16,896 KB
testcase_13 AC 272 ms
16,896 KB
testcase_14 AC 173 ms
14,464 KB
testcase_15 AC 150 ms
13,952 KB
testcase_16 AC 592 ms
24,064 KB
testcase_17 AC 391 ms
19,328 KB
testcase_18 AC 177 ms
14,720 KB
testcase_19 AC 862 ms
30,592 KB
testcase_20 AC 132 ms
13,568 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 845 ms
30,592 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 32 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 31 ms
10,880 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    XF = [list(map(int, input().split())) for _ in range(Q)]

    for i in range(Q):
        x, f = XF[i]

        y_0 = (f * pow(x, P-2, P)) % P

        if y_0 == 0:
            print((M - y_0) // P)
        else:
            print((M - y_0) // P + 1)
    return 0


main()
0