結果

問題 No.551 夏休みの思い出(2)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-12 13:49:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,498 ms / 4,000 ms
コード長 993 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 93,296 KB
最終ジャッジ日時 2024-10-09 18:12:48
合計ジャッジ時間 25,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
64,228 KB
testcase_01 AC 93 ms
64,524 KB
testcase_02 AC 100 ms
67,424 KB
testcase_03 AC 148 ms
77,428 KB
testcase_04 AC 165 ms
78,164 KB
testcase_05 AC 180 ms
78,176 KB
testcase_06 AC 188 ms
78,480 KB
testcase_07 AC 95 ms
65,184 KB
testcase_08 AC 93 ms
65,380 KB
testcase_09 AC 95 ms
64,828 KB
testcase_10 AC 95 ms
64,720 KB
testcase_11 AC 93 ms
65,640 KB
testcase_12 AC 96 ms
65,048 KB
testcase_13 AC 95 ms
65,496 KB
testcase_14 AC 95 ms
65,488 KB
testcase_15 AC 95 ms
66,632 KB
testcase_16 AC 93 ms
65,368 KB
testcase_17 AC 107 ms
80,896 KB
testcase_18 AC 105 ms
77,288 KB
testcase_19 AC 111 ms
81,280 KB
testcase_20 AC 109 ms
76,292 KB
testcase_21 AC 104 ms
75,024 KB
testcase_22 AC 102 ms
71,440 KB
testcase_23 AC 95 ms
67,368 KB
testcase_24 AC 105 ms
75,280 KB
testcase_25 AC 109 ms
81,216 KB
testcase_26 AC 108 ms
81,600 KB
testcase_27 AC 520 ms
92,972 KB
testcase_28 AC 600 ms
93,296 KB
testcase_29 AC 266 ms
93,036 KB
testcase_30 AC 952 ms
93,236 KB
testcase_31 AC 260 ms
93,068 KB
testcase_32 AC 1,155 ms
92,960 KB
testcase_33 AC 480 ms
93,188 KB
testcase_34 AC 370 ms
93,112 KB
testcase_35 AC 279 ms
93,032 KB
testcase_36 AC 301 ms
92,944 KB
testcase_37 AC 2,392 ms
93,176 KB
testcase_38 AC 1,957 ms
92,828 KB
testcase_39 AC 574 ms
93,048 KB
testcase_40 AC 1,340 ms
93,264 KB
testcase_41 AC 942 ms
92,816 KB
testcase_42 AC 2,498 ms
92,996 KB
testcase_43 AC 675 ms
92,988 KB
testcase_44 AC 1,193 ms
93,048 KB
testcase_45 AC 689 ms
93,040 KB
testcase_46 AC 2,358 ms
93,144 KB
testcase_47 AC 92 ms
64,024 KB
testcase_48 AC 91 ms
63,580 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(10000):
    Right[i] = pow(revR,i,P)
    
Left =defaultdict(int)
R100=pow(R,10000,P)

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