結果

問題 No.551 夏休みの思い出(2)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-12 13:45:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,653 ms / 4,000 ms
コード長 989 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 223,360 KB
最終ジャッジ日時 2024-10-09 18:12:19
合計ジャッジ時間 43,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
75,392 KB
testcase_01 AC 537 ms
75,648 KB
testcase_02 AC 545 ms
75,652 KB
testcase_03 AC 588 ms
77,312 KB
testcase_04 AC 605 ms
77,304 KB
testcase_05 AC 622 ms
78,052 KB
testcase_06 AC 628 ms
77,208 KB
testcase_07 AC 536 ms
75,520 KB
testcase_08 AC 539 ms
75,520 KB
testcase_09 AC 538 ms
75,392 KB
testcase_10 AC 538 ms
75,392 KB
testcase_11 AC 543 ms
75,520 KB
testcase_12 AC 535 ms
75,136 KB
testcase_13 AC 539 ms
75,392 KB
testcase_14 AC 541 ms
75,460 KB
testcase_15 AC 539 ms
75,796 KB
testcase_16 AC 533 ms
75,500 KB
testcase_17 AC 599 ms
95,360 KB
testcase_18 AC 576 ms
86,528 KB
testcase_19 AC 657 ms
129,652 KB
testcase_20 AC 578 ms
86,764 KB
testcase_21 AC 611 ms
95,360 KB
testcase_22 AC 554 ms
81,280 KB
testcase_23 AC 549 ms
77,976 KB
testcase_24 AC 579 ms
85,120 KB
testcase_25 AC 591 ms
95,584 KB
testcase_26 AC 621 ms
113,788 KB
testcase_27 AC 916 ms
147,328 KB
testcase_28 AC 1,074 ms
223,104 KB
testcase_29 AC 988 ms
223,232 KB
testcase_30 AC 1,016 ms
223,104 KB
testcase_31 AC 972 ms
223,232 KB
testcase_32 AC 1,019 ms
223,260 KB
testcase_33 AC 1,039 ms
223,208 KB
testcase_34 AC 994 ms
223,232 KB
testcase_35 AC 994 ms
223,220 KB
testcase_36 AC 1,032 ms
223,360 KB
testcase_37 AC 1,653 ms
222,848 KB
testcase_38 AC 1,512 ms
222,976 KB
testcase_39 AC 1,048 ms
223,104 KB
testcase_40 AC 1,571 ms
223,096 KB
testcase_41 AC 1,081 ms
222,848 KB
testcase_42 AC 1,519 ms
223,104 KB
testcase_43 AC 1,463 ms
222,992 KB
testcase_44 AC 1,172 ms
223,232 KB
testcase_45 AC 1,134 ms
223,100 KB
testcase_46 AC 1,575 ms
223,224 KB
testcase_47 AC 538 ms
75,572 KB
testcase_48 AC 531 ms
75,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,R=map(int,input().split())
from collections import defaultdict
Q=int(input())  
def modinv(X):
    return pow(X,P-2,P)

revR=modinv(R)
Right= defaultdict(int)
for i in range(1000):
    Right[i] = pow(revR,i,P)
    
Left =defaultdict(int)
R100=pow(R,1000,P)

for i in range(10**6):
    Left[pow(R100,i,P)] = i
    
def solve(a,b,c):
    T=(b**2-4*a*c)*modinv(4*a*a)%P
    S=b*modinv(2*a)%P
    # (X+S)**2 == T なるXを一つ見つける
    # R**u == T のuを見つける
    if T == 0:
        print((-S) %P)
        return
    order = -1
    for j in range(1000):
        key= Right[j]*T%P
        if key in Left.keys():
            order = 1000* Left[key] + j
            break
    
    order =order % (P - 1 )

    if order%2!=0:
        print(-1)
        return
    else:
        V= pow(R,order//2,P)
        mini,maxi=min((V-S)%P,(-V-S)%P),max((V-S)%P,(-V-S)%P)
        print(mini,maxi)
        return
    
for i in range(Q):
    a,b,c=map(int,input().split())
    solve(a,b,c)
0