結果

問題 No.551 夏休みの思い出(2)
ユーザー pekempeypekempey
提出日時 2017-07-29 03:25:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 4,000 ms
コード長 498 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-10-10 20:38:13
合計ジャッジ時間 10,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 52 ms
55,680 KB
testcase_03 AC 110 ms
76,352 KB
testcase_04 AC 128 ms
77,312 KB
testcase_05 AC 166 ms
77,056 KB
testcase_06 AC 183 ms
77,832 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 42 ms
53,376 KB
testcase_09 AC 41 ms
52,992 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 41 ms
53,248 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 44 ms
53,376 KB
testcase_14 AC 43 ms
53,248 KB
testcase_15 AC 42 ms
53,376 KB
testcase_16 AC 40 ms
53,248 KB
testcase_17 AC 53 ms
63,232 KB
testcase_18 AC 52 ms
63,744 KB
testcase_19 AC 48 ms
60,928 KB
testcase_20 AC 54 ms
63,232 KB
testcase_21 AC 54 ms
63,104 KB
testcase_22 AC 51 ms
62,848 KB
testcase_23 AC 52 ms
63,360 KB
testcase_24 AC 51 ms
63,104 KB
testcase_25 AC 50 ms
61,952 KB
testcase_26 AC 52 ms
62,848 KB
testcase_27 AC 290 ms
78,760 KB
testcase_28 AC 287 ms
78,720 KB
testcase_29 AC 273 ms
79,104 KB
testcase_30 AC 291 ms
78,464 KB
testcase_31 AC 259 ms
77,632 KB
testcase_32 AC 284 ms
79,500 KB
testcase_33 AC 284 ms
79,444 KB
testcase_34 AC 344 ms
79,500 KB
testcase_35 AC 282 ms
79,260 KB
testcase_36 AC 285 ms
78,496 KB
testcase_37 AC 308 ms
78,836 KB
testcase_38 AC 306 ms
79,348 KB
testcase_39 AC 294 ms
78,848 KB
testcase_40 AC 292 ms
79,052 KB
testcase_41 AC 285 ms
78,904 KB
testcase_42 AC 304 ms
78,464 KB
testcase_43 AC 298 ms
78,720 KB
testcase_44 AC 281 ms
78,884 KB
testcase_45 AC 276 ms
79,872 KB
testcase_46 AC 301 ms
79,464 KB
testcase_47 AC 38 ms
53,544 KB
testcase_48 AC 38 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,r=map(int,input().split())
f=lambda a:pow(a,(p-1)//2,p)!=p-1
def h(a):
    if a%p==0:return 0
    b=2
    while f(b*b-a):b+=1
    h=lambda u,v:((u[0]*v[0]+u[1]*v[1]*(b*b-a))%p,(u[0]*v[1]+u[1]*v[0])%p)
    e,r,v=(p+1)//2,(1,0),(b,1)
    while e:
        if e&1:r=h(r,v)
        v,e=h(v,v),e//2
    return r[0]
for _ in range(int(input())):
    a,b,c=map(int,input().split())
    d=b*b-4*a*c
    a=pow(2*a,p-2,p)
    D=h(d)
    if f(d):print(*sorted(set(((D-b)*a%p,(-b-D)*a%p))))
    else:print(-1)
0