結果

問題 No.2324 Two Countries within UEC
ユーザー navel_tosnavel_tos
提出日時 2023-05-29 17:33:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 79,156 KB
最終ジャッジ日時 2024-06-26 23:33:41
合計ジャッジ時間 12,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
77,040 KB
testcase_01 AC 475 ms
77,800 KB
testcase_02 AC 173 ms
76,944 KB
testcase_03 AC 354 ms
77,128 KB
testcase_04 AC 394 ms
76,564 KB
testcase_05 AC 216 ms
77,048 KB
testcase_06 AC 231 ms
77,068 KB
testcase_07 AC 215 ms
78,392 KB
testcase_08 AC 349 ms
76,968 KB
testcase_09 AC 382 ms
76,564 KB
testcase_10 AC 441 ms
77,280 KB
testcase_11 AC 492 ms
76,936 KB
testcase_12 AC 203 ms
76,556 KB
testcase_13 AC 205 ms
77,120 KB
testcase_14 AC 163 ms
77,088 KB
testcase_15 AC 155 ms
76,436 KB
testcase_16 AC 341 ms
76,880 KB
testcase_17 AC 252 ms
77,100 KB
testcase_18 AC 167 ms
76,568 KB
testcase_19 AC 438 ms
76,736 KB
testcase_20 AC 145 ms
76,880 KB
testcase_21 AC 423 ms
79,156 KB
testcase_22 AC 389 ms
77,224 KB
testcase_23 AC 273 ms
77,744 KB
testcase_24 AC 372 ms
77,284 KB
testcase_25 AC 453 ms
76,580 KB
testcase_26 AC 284 ms
76,316 KB
testcase_27 AC 290 ms
76,448 KB
testcase_28 AC 295 ms
76,568 KB
testcase_29 AC 282 ms
76,940 KB
testcase_30 AC 286 ms
76,276 KB
testcase_31 AC 35 ms
52,276 KB
testcase_32 AC 34 ms
53,184 KB
testcase_33 AC 34 ms
53,232 KB
testcase_34 AC 34 ms
53,664 KB
testcase_35 AC 36 ms
52,524 KB
testcase_36 AC 35 ms
51,876 KB
testcase_37 AC 34 ms
53,844 KB
testcase_38 AC 35 ms
52,120 KB
testcase_39 AC 35 ms
53,020 KB
testcase_40 AC 35 ms
52,748 KB
testcase_41 AC 35 ms
53,504 KB
testcase_42 AC 34 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#MMA Contest 015 C

'''
xが与えられるので、x*y mod P≡f となるyの個数を出力せよ。

急に緑diff。
絶対に初心者向けではない。難しすぎる。
'''
gcd=lambda x,y: gcd(y,x%y) if x%y else y
f=lambda:list(map(int,input().split()))

N,M,P,Q=f()
for _ in range(Q):
    x,a=f()
    if a>=P: print(0); continue
    Z=gcd(x,P)
    if a%Z: print(0); continue
    nX=x//Z; nP=P//Z; nA=a//Z
    revX=pow(nX,nP-2,nP)
    basic=revX*nA%nP
    ans=(M-basic)//nP-1
    while (ans+1)*nP<=M-basic: ans+=1
    if a==0: print(ans)
    else: print(ans+1)
0