結果

問題 No.2324 Two Countries within UEC
ユーザー ああいいああいい
提出日時 2023-06-01 08:55:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 76,652 KB
最終ジャッジ日時 2024-06-26 23:35:14
合計ジャッジ時間 10,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
76,152 KB
testcase_01 AC 359 ms
75,844 KB
testcase_02 AC 123 ms
75,844 KB
testcase_03 AC 279 ms
75,916 KB
testcase_04 AC 300 ms
75,904 KB
testcase_05 AC 129 ms
75,908 KB
testcase_06 AC 173 ms
76,176 KB
testcase_07 AC 119 ms
76,092 KB
testcase_08 AC 272 ms
76,180 KB
testcase_09 AC 280 ms
76,220 KB
testcase_10 AC 350 ms
76,072 KB
testcase_11 AC 348 ms
76,004 KB
testcase_12 AC 162 ms
76,652 KB
testcase_13 AC 158 ms
76,092 KB
testcase_14 AC 128 ms
76,044 KB
testcase_15 AC 116 ms
76,096 KB
testcase_16 AC 254 ms
76,220 KB
testcase_17 AC 196 ms
76,596 KB
testcase_18 AC 128 ms
76,040 KB
testcase_19 AC 342 ms
75,948 KB
testcase_20 AC 110 ms
76,072 KB
testcase_21 AC 245 ms
76,488 KB
testcase_22 AC 295 ms
76,044 KB
testcase_23 AC 146 ms
76,060 KB
testcase_24 AC 282 ms
76,448 KB
testcase_25 AC 333 ms
76,168 KB
testcase_26 AC 262 ms
76,188 KB
testcase_27 AC 265 ms
76,288 KB
testcase_28 AC 276 ms
75,928 KB
testcase_29 AC 265 ms
76,136 KB
testcase_30 AC 264 ms
75,924 KB
testcase_31 AC 35 ms
53,308 KB
testcase_32 AC 35 ms
52,116 KB
testcase_33 AC 34 ms
53,696 KB
testcase_34 AC 36 ms
52,424 KB
testcase_35 AC 36 ms
51,828 KB
testcase_36 AC 34 ms
52,300 KB
testcase_37 AC 36 ms
53,604 KB
testcase_38 AC 35 ms
52,036 KB
testcase_39 AC 35 ms
52,576 KB
testcase_40 AC 35 ms
52,096 KB
testcase_41 AC 35 ms
51,812 KB
testcase_42 AC 34 ms
53,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

q = M // P
r = M % P

for _ in range(Q):
    x,f = map(int,input().split())

    if x % P == 0:
        if f == 0:
            print(M)
        else:
            print(0)
        continue
    
    y = f * pow(x,P-2,P) % P

    if y == 0:
        print(q)
        continue
    if y <= r:
        print(q+1)
    else:
        print(q)
        
0