結果

問題 No.2324 Two Countries within UEC
ユーザー titiatitia
提出日時 2023-07-23 02:19:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-23 01:29:18
合計ジャッジ時間 22,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
10,752 KB
testcase_01 AC 923 ms
10,624 KB
testcase_02 AC 189 ms
10,752 KB
testcase_03 AC 698 ms
10,752 KB
testcase_04 AC 805 ms
10,624 KB
testcase_05 AC 196 ms
10,752 KB
testcase_06 AC 336 ms
10,624 KB
testcase_07 AC 167 ms
10,752 KB
testcase_08 AC 694 ms
10,624 KB
testcase_09 AC 733 ms
10,752 KB
testcase_10 AC 924 ms
10,752 KB
testcase_11 AC 928 ms
10,752 KB
testcase_12 AC 303 ms
10,624 KB
testcase_13 AC 295 ms
10,752 KB
testcase_14 AC 187 ms
10,752 KB
testcase_15 AC 170 ms
10,624 KB
testcase_16 AC 640 ms
10,752 KB
testcase_17 AC 411 ms
10,624 KB
testcase_18 AC 201 ms
10,624 KB
testcase_19 AC 935 ms
10,752 KB
testcase_20 AC 144 ms
10,624 KB
testcase_21 WA -
testcase_22 AC 817 ms
10,752 KB
testcase_23 AC 267 ms
10,624 KB
testcase_24 WA -
testcase_25 AC 944 ms
10,752 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 30 ms
10,624 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 31 ms
10,624 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,624 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 30 ms
10,752 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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//P)
        else:
            print(0)
    else:
        y=pow(x,-1,P)*f%P

        ANS=M//P

        if y==0:
            ANS-=1

        
        if M%P>=y:
            ANS+=1
        print(ANS)
0