結果

問題 No.2324 Two Countries within UEC
ユーザー tontirutontiru
提出日時 2023-05-29 16:38:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-08 19:16:49
合計ジャッジ時間 20,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 269 ms
76,288 KB
testcase_27 AC 280 ms
76,576 KB
testcase_28 AC 252 ms
76,160 KB
testcase_29 AC 256 ms
76,320 KB
testcase_30 AC 256 ms
76,248 KB
testcase_31 AC 36 ms
52,480 KB
testcase_32 AC 34 ms
51,968 KB
testcase_33 AC 33 ms
52,352 KB
testcase_34 AC 33 ms
52,096 KB
testcase_35 WA -
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 38 ms
51,968 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 37 ms
51,712 KB
testcase_41 AC 37 ms
52,608 KB
testcase_42 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

num = P-2
num = int(bin(num)[2:])

for i in range(Q):
    x,f = map(int,input().split())
    cels = []
    res = 1
    if x%P == 0:
        if f == 0:
            print(M)
        else:
            print(0)
    else:
        for j in range(0,len(str(num))):
            if cels == []:
                cels.append(x)
            else:
                cels.append((cels[-1]**2)%P)
            if str(num)[j] == "1":
                res *= cels[-1]
                res %= P
        y = (f*res)%P
        if y <= M and y != 0:
            print((M-y)//P+1)
        elif y == 0:
            print((M-y)//P)
        else:
            print(0)
            


0