結果

問題 No.2602 Real Collider
ユーザー ゼットゼット
提出日時 2024-01-12 22:52:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 978 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2024-09-27 23:40:33
合計ジャッジ時間 30,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,856 KB
testcase_01 AC 34 ms
52,080 KB
testcase_02 AC 33 ms
53,012 KB
testcase_03 AC 35 ms
54,232 KB
testcase_04 AC 33 ms
52,636 KB
testcase_05 AC 34 ms
54,152 KB
testcase_06 AC 35 ms
52,576 KB
testcase_07 AC 36 ms
52,368 KB
testcase_08 AC 36 ms
52,328 KB
testcase_09 AC 38 ms
53,332 KB
testcase_10 AC 833 ms
76,576 KB
testcase_11 AC 348 ms
76,472 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 304 ms
76,376 KB
testcase_16 AC 409 ms
76,344 KB
testcase_17 AC 431 ms
76,764 KB
testcase_18 AC 324 ms
76,740 KB
testcase_19 WA -
testcase_20 AC 520 ms
76,560 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 293 ms
76,284 KB
testcase_27 WA -
testcase_28 AC 428 ms
76,304 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 399 ms
76,264 KB
testcase_32 AC 353 ms
76,672 KB
testcase_33 AC 408 ms
76,268 KB
testcase_34 AC 404 ms
76,744 KB
testcase_35 AC 276 ms
76,284 KB
testcase_36 AC 285 ms
76,788 KB
testcase_37 AC 438 ms
76,588 KB
testcase_38 AC 449 ms
76,180 KB
testcase_39 AC 438 ms
76,324 KB
testcase_40 AC 245 ms
76,768 KB
testcase_41 AC 480 ms
76,336 KB
testcase_42 AC 379 ms
76,348 KB
testcase_43 AC 393 ms
76,748 KB
testcase_44 AC 493 ms
76,452 KB
testcase_45 AC 338 ms
76,456 KB
testcase_46 AC 314 ms
76,324 KB
testcase_47 AC 438 ms
76,448 KB
testcase_48 AC 351 ms
76,680 KB
testcase_49 AC 326 ms
76,356 KB
testcase_50 AC 266 ms
76,804 KB
testcase_51 AC 280 ms
76,192 KB
testcase_52 AC 209 ms
76,324 KB
testcase_53 AC 423 ms
76,532 KB
testcase_54 AC 333 ms
76,184 KB
testcase_55 AC 363 ms
76,256 KB
testcase_56 AC 353 ms
76,336 KB
testcase_57 AC 335 ms
76,752 KB
testcase_58 AC 176 ms
76,464 KB
testcase_59 AC 392 ms
76,208 KB
testcase_60 AC 358 ms
76,452 KB
testcase_61 AC 290 ms
76,260 KB
testcase_62 AC 398 ms
76,400 KB
testcase_63 AC 462 ms
76,256 KB
testcase_64 AC 527 ms
76,872 KB
testcase_65 AC 291 ms
76,260 KB
testcase_66 AC 437 ms
76,392 KB
testcase_67 AC 244 ms
76,200 KB
testcase_68 AC 265 ms
76,752 KB
testcase_69 AC 216 ms
76,540 KB
testcase_70 AC 238 ms
76,256 KB
testcase_71 AC 286 ms
76,612 KB
testcase_72 AC 393 ms
76,380 KB
testcase_73 AC 340 ms
76,588 KB
testcase_74 AC 406 ms
76,580 KB
testcase_75 AC 422 ms
76,344 KB
testcase_76 AC 377 ms
76,408 KB
testcase_77 AC 413 ms
76,824 KB
testcase_78 AC 487 ms
76,396 KB
testcase_79 AC 433 ms
76,416 KB
testcase_80 AC 468 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
a,b,c,d,e,f=map(int,input().split())
v=[2*a,2*b,2*c,2*d,2*e,2*f]
for i in range(3):
  x1=1
  y1=1
  for j in range(3):
    if i==j:
      continue
    x1*=(v[2*j]-v[2*i])
    y1*=(v[2*j+1]-v[2*i+1])
  if x1+y1<0:
    rx,ry=0,0
    for j in range(3):
      if j==i:
        continue
      rx+=v[2*j]
      ry+=v[2*j+1]
      dx=v[2*j]-v[2*i]
      dy=v[2*j+1]-v[2*i+1]
    rx//=2
    ry//=2
    v[2*i],v[2*i+1]=rx-dy,ry+dx
    break
a,b,c,d,e,f=v[:]
if a==c:
  c,d,e,f=e,f,c,d
x1=(a**2+b**2)*(d-f)+(c**2+d**2)*(f-b)+(e**2+f**2)*(b-d)
y1=(a**2+b**2)*(e-c)+(c**2+d**2)*(a-e)+(e**2+f**2)*(c-a)
k=2*(a*(d-f)+c*(f-b)+e*(b-d))
if k==0:
  c,d,e,f=e,f,c,d
  x1=(a**2+b**2)*(d-f)+(c**2+d**2)*(f-b)+(e**2+f**2)*(b-d)
  y1=(a**2+b**2)*(e-c)+(c**2+d**2)*(a-e)+(e**2+f**2)*(c-a)
if k==0:
  A=[0]
  print(A[1])
r2=(x1-a*k)**2+(y1-b*k)**2
for _ in range(Q):
  x,y=map(int,input().split())
  x=2*x
  y=2*y
  if (x1-x*k)**2+(y1-y*k)**2<=r2:
    print('Yes')
  else:
    print('No')
0