結果

問題 No.551 夏休みの思い出(2)
ユーザー pekempeypekempey
提出日時 2017-07-29 04:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 4,000 ms
コード長 442 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-10-10 21:05:03
合計ジャッジ時間 9,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 49 ms
55,552 KB
testcase_03 AC 105 ms
76,416 KB
testcase_04 AC 125 ms
77,312 KB
testcase_05 AC 167 ms
77,372 KB
testcase_06 AC 181 ms
78,088 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 41 ms
53,760 KB
testcase_09 AC 41 ms
52,992 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 41 ms
53,376 KB
testcase_12 AC 41 ms
53,120 KB
testcase_13 AC 41 ms
53,248 KB
testcase_14 AC 41 ms
53,376 KB
testcase_15 AC 41 ms
53,120 KB
testcase_16 AC 41 ms
53,632 KB
testcase_17 AC 53 ms
63,232 KB
testcase_18 AC 51 ms
62,848 KB
testcase_19 AC 48 ms
60,672 KB
testcase_20 AC 52 ms
63,104 KB
testcase_21 AC 51 ms
63,104 KB
testcase_22 AC 50 ms
62,848 KB
testcase_23 AC 51 ms
62,464 KB
testcase_24 AC 51 ms
62,464 KB
testcase_25 AC 49 ms
61,568 KB
testcase_26 AC 51 ms
62,848 KB
testcase_27 AC 286 ms
78,520 KB
testcase_28 AC 280 ms
78,336 KB
testcase_29 AC 272 ms
79,488 KB
testcase_30 AC 286 ms
78,464 KB
testcase_31 AC 258 ms
77,376 KB
testcase_32 AC 282 ms
79,232 KB
testcase_33 AC 280 ms
79,360 KB
testcase_34 AC 275 ms
79,016 KB
testcase_35 AC 278 ms
78,876 KB
testcase_36 AC 295 ms
78,208 KB
testcase_37 AC 315 ms
78,888 KB
testcase_38 AC 300 ms
79,400 KB
testcase_39 AC 288 ms
79,616 KB
testcase_40 AC 290 ms
79,080 KB
testcase_41 AC 278 ms
78,500 KB
testcase_42 AC 303 ms
78,592 KB
testcase_43 AC 298 ms
78,976 KB
testcase_44 AC 279 ms
78,492 KB
testcase_45 AC 281 ms
79,504 KB
testcase_46 AC 302 ms
79,344 KB
testcase_47 AC 37 ms
51,840 KB
testcase_48 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,_=map(int,input().split())
f=lambda a:pow(a,p-1>>1,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=p+1>>1
	r=1,0
	v=b,1
	while e:
		if e&1:r=h(r,v)
		v=h(v,v)
		e>>=1
	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