結果

問題 No.551 夏休みの思い出(2)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-12 01:08:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,211 ms / 4,000 ms
コード長 987 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 265,300 KB
最終ジャッジ日時 2024-10-09 12:20:58
合計ジャッジ時間 74,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,056 ms
75,520 KB
testcase_01 AC 1,061 ms
75,520 KB
testcase_02 AC 1,063 ms
75,520 KB
testcase_03 AC 1,111 ms
77,568 KB
testcase_04 AC 1,125 ms
77,772 KB
testcase_05 AC 1,148 ms
77,440 KB
testcase_06 AC 1,148 ms
77,796 KB
testcase_07 AC 1,059 ms
75,520 KB
testcase_08 AC 1,056 ms
75,520 KB
testcase_09 AC 1,058 ms
75,520 KB
testcase_10 AC 1,062 ms
75,392 KB
testcase_11 AC 1,049 ms
75,520 KB
testcase_12 AC 1,058 ms
75,520 KB
testcase_13 AC 1,056 ms
75,732 KB
testcase_14 AC 1,057 ms
75,392 KB
testcase_15 AC 1,058 ms
75,520 KB
testcase_16 AC 1,054 ms
75,136 KB
testcase_17 AC 1,133 ms
95,544 KB
testcase_18 AC 1,104 ms
86,400 KB
testcase_19 AC 1,225 ms
129,536 KB
testcase_20 AC 1,107 ms
86,528 KB
testcase_21 AC 1,215 ms
118,272 KB
testcase_22 AC 1,096 ms
81,024 KB
testcase_23 AC 1,101 ms
81,280 KB
testcase_24 AC 1,174 ms
95,360 KB
testcase_25 AC 1,137 ms
95,352 KB
testcase_26 AC 1,186 ms
113,920 KB
testcase_27 AC 1,665 ms
222,848 KB
testcase_28 AC 1,957 ms
265,048 KB
testcase_29 AC 1,783 ms
265,044 KB
testcase_30 AC 1,889 ms
264,912 KB
testcase_31 AC 1,812 ms
265,048 KB
testcase_32 AC 1,874 ms
265,056 KB
testcase_33 AC 1,890 ms
264,924 KB
testcase_34 AC 1,830 ms
264,872 KB
testcase_35 AC 1,840 ms
264,920 KB
testcase_36 AC 1,880 ms
264,792 KB
testcase_37 AC 2,211 ms
265,044 KB
testcase_38 AC 2,184 ms
265,200 KB
testcase_39 AC 1,896 ms
264,788 KB
testcase_40 AC 2,201 ms
265,120 KB
testcase_41 AC 1,870 ms
265,184 KB
testcase_42 AC 2,136 ms
265,044 KB
testcase_43 AC 2,029 ms
265,176 KB
testcase_44 AC 1,964 ms
265,176 KB
testcase_45 AC 1,928 ms
264,916 KB
testcase_46 AC 2,199 ms
265,300 KB
testcase_47 AC 1,057 ms
75,648 KB
testcase_48 AC 1,063 ms
75,320 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(500):
    Right[i] = pow(revR,i,P)
    
Left =defaultdict(int)
R100=pow(R,500,P)

for i in range(2*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(500):
        key= Right[j]*T%P
        if key in Left.keys():
            order = 500* 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