結果

問題 No.2602 Real Collider
ユーザー 👑 p-adicp-adic
提出日時 2024-01-13 01:06:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-09-28 00:56:06
合計ジャッジ時間 30,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 34 ms
52,824 KB
testcase_02 AC 35 ms
52,228 KB
testcase_03 AC 36 ms
54,304 KB
testcase_04 AC 34 ms
52,948 KB
testcase_05 AC 35 ms
52,992 KB
testcase_06 AC 35 ms
52,748 KB
testcase_07 AC 35 ms
53,116 KB
testcase_08 AC 36 ms
52,760 KB
testcase_09 AC 35 ms
52,752 KB
testcase_10 AC 928 ms
76,524 KB
testcase_11 AC 399 ms
76,060 KB
testcase_12 AC 274 ms
76,272 KB
testcase_13 AC 160 ms
76,152 KB
testcase_14 AC 283 ms
76,288 KB
testcase_15 AC 306 ms
76,384 KB
testcase_16 AC 440 ms
76,208 KB
testcase_17 AC 486 ms
76,256 KB
testcase_18 AC 208 ms
75,708 KB
testcase_19 AC 241 ms
76,300 KB
testcase_20 AC 554 ms
76,380 KB
testcase_21 AC 205 ms
76,120 KB
testcase_22 AC 234 ms
76,760 KB
testcase_23 AC 190 ms
76,640 KB
testcase_24 AC 234 ms
76,772 KB
testcase_25 AC 224 ms
76,704 KB
testcase_26 AC 316 ms
76,488 KB
testcase_27 AC 263 ms
76,176 KB
testcase_28 AC 465 ms
76,476 KB
testcase_29 AC 227 ms
76,224 KB
testcase_30 AC 237 ms
76,356 KB
testcase_31 AC 434 ms
76,068 KB
testcase_32 AC 384 ms
76,020 KB
testcase_33 AC 435 ms
76,228 KB
testcase_34 AC 444 ms
76,264 KB
testcase_35 AC 305 ms
76,352 KB
testcase_36 AC 307 ms
76,148 KB
testcase_37 AC 471 ms
76,884 KB
testcase_38 AC 481 ms
76,160 KB
testcase_39 AC 481 ms
76,176 KB
testcase_40 AC 263 ms
76,336 KB
testcase_41 AC 525 ms
76,096 KB
testcase_42 AC 437 ms
76,056 KB
testcase_43 AC 431 ms
76,100 KB
testcase_44 AC 535 ms
76,640 KB
testcase_45 AC 364 ms
75,864 KB
testcase_46 AC 359 ms
76,452 KB
testcase_47 AC 480 ms
76,484 KB
testcase_48 AC 379 ms
75,984 KB
testcase_49 AC 345 ms
76,752 KB
testcase_50 AC 282 ms
76,180 KB
testcase_51 AC 301 ms
76,052 KB
testcase_52 AC 222 ms
76,216 KB
testcase_53 AC 435 ms
76,352 KB
testcase_54 AC 369 ms
76,012 KB
testcase_55 AC 398 ms
76,332 KB
testcase_56 AC 389 ms
76,052 KB
testcase_57 AC 372 ms
75,880 KB
testcase_58 AC 190 ms
76,412 KB
testcase_59 AC 428 ms
76,620 KB
testcase_60 AC 394 ms
76,360 KB
testcase_61 AC 339 ms
75,948 KB
testcase_62 AC 458 ms
76,540 KB
testcase_63 AC 507 ms
76,140 KB
testcase_64 AC 556 ms
76,284 KB
testcase_65 AC 323 ms
76,592 KB
testcase_66 AC 472 ms
76,592 KB
testcase_67 AC 262 ms
76,128 KB
testcase_68 AC 292 ms
76,432 KB
testcase_69 AC 242 ms
75,944 KB
testcase_70 AC 262 ms
76,552 KB
testcase_71 AC 334 ms
76,428 KB
testcase_72 AC 437 ms
76,444 KB
testcase_73 AC 396 ms
76,140 KB
testcase_74 AC 453 ms
76,572 KB
testcase_75 AC 470 ms
76,704 KB
testcase_76 AC 422 ms
76,100 KB
testcase_77 AC 434 ms
76,148 KB
testcase_78 AC 512 ms
76,256 KB
testcase_79 AC 444 ms
76,284 KB
testcase_80 AC 505 ms
76,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
J=lambda:map(int,I().split())
Q=int(I())
a,b,c,d,e,f=J()
X=[a,c,e,a,c]
Y=[b,d,f,b,d]
for i in R(3):
	py,qy=Y[i]+Y[i+1],2
	px,qx=X[i]+X[i+1],1
	r=((X[i]-X[i+1])**2+(Y[i]-Y[i+1])**2)*qx
	if(px-X[i+2]*qx*qy)**2+((py-Y[i+2]*qy)*qx)**2<=r:break
else:
	#https://qiita.com/tatesuke/items/59133758ec25146766c3
	L=[a*a+b*b,c*c+d*d,e*e+f*f]
	py,qy=(e-c)*L[0]-(e-a)*L[1]+(c-a)*L[2],2*((e-a)*(b-d)-(c-a)*(b-f))
	px=((2*(b-f)*py+L[2]*qy)if(c==a)else(2*(b-d)*py+L[1]*qy))-L[0]*qy
	qx=2*(e-a if c==a else c-a)
	r=(px-a*qx*qy)**2+((py-b*qy)*qx)**2
for q in R(Q):
	x,y=J()
	print("YNeos"[(px-x*qx*qy)**2+((py-y*qy)*qx)**2>r::2])
0