結果

問題 No.551 夏休みの思い出(2)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-08-12 01:05:25
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 987 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 453,132 KB
最終ジャッジ日時 2024-10-09 12:19:21
合計ジャッジ時間 178,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,700 ms
75,420 KB
testcase_01 AC 2,705 ms
75,380 KB
testcase_02 AC 2,712 ms
75,656 KB
testcase_03 AC 2,751 ms
77,468 KB
testcase_04 AC 2,776 ms
77,576 KB
testcase_05 AC 2,786 ms
77,580 KB
testcase_06 AC 2,808 ms
77,616 KB
testcase_07 AC 2,700 ms
75,440 KB
testcase_08 AC 2,702 ms
75,520 KB
testcase_09 AC 2,710 ms
75,504 KB
testcase_10 AC 2,701 ms
75,556 KB
testcase_11 AC 2,698 ms
75,372 KB
testcase_12 AC 2,705 ms
75,716 KB
testcase_13 AC 2,696 ms
75,588 KB
testcase_14 AC 2,698 ms
75,316 KB
testcase_15 AC 2,713 ms
75,744 KB
testcase_16 AC 2,699 ms
75,640 KB
testcase_17 AC 2,970 ms
95,576 KB
testcase_18 AC 2,938 ms
86,576 KB
testcase_19 AC 3,187 ms
129,916 KB
testcase_20 AC 2,955 ms
86,792 KB
testcase_21 AC 3,160 ms
95,536 KB
testcase_22 AC 2,762 ms
81,608 KB
testcase_23 AC 2,746 ms
78,328 KB
testcase_24 AC 2,997 ms
85,560 KB
testcase_25 AC 2,971 ms
95,428 KB
testcase_26 AC 3,046 ms
114,116 KB
testcase_27 AC 3,726 ms
147,376 KB
testcase_28 TLE -
testcase_29 AC 3,898 ms
264,976 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 2,696 ms
75,552 KB
testcase_48 AC 2,698 ms
75,496 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(200):
    Right[i] = pow(revR,i,P)
    
Left =defaultdict(int)
R100=pow(R,200,P)

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