結果

問題 No.2602 Real Collider
ユーザー ゼットゼット
提出日時 2024-01-12 22:50:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-09-27 23:36:44
合計ジャッジ時間 34,645 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 40 ms
53,888 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 957 ms
76,592 KB
testcase_11 AC 409 ms
76,544 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 335 ms
76,416 KB
testcase_16 AC 459 ms
76,672 KB
testcase_17 AC 506 ms
76,544 KB
testcase_18 AC 401 ms
76,516 KB
testcase_19 WA -
testcase_20 AC 608 ms
76,544 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 329 ms
76,416 KB
testcase_27 WA -
testcase_28 AC 490 ms
76,288 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 454 ms
76,436 KB
testcase_32 AC 397 ms
76,288 KB
testcase_33 AC 461 ms
76,648 KB
testcase_34 AC 461 ms
76,416 KB
testcase_35 AC 342 ms
76,160 KB
testcase_36 AC 340 ms
76,544 KB
testcase_37 AC 523 ms
76,288 KB
testcase_38 AC 503 ms
76,416 KB
testcase_39 AC 493 ms
76,416 KB
testcase_40 AC 281 ms
76,544 KB
testcase_41 AC 555 ms
77,056 KB
testcase_42 AC 439 ms
77,056 KB
testcase_43 AC 451 ms
76,544 KB
testcase_44 AC 557 ms
76,800 KB
testcase_45 AC 377 ms
76,436 KB
testcase_46 AC 358 ms
76,288 KB
testcase_47 AC 521 ms
76,672 KB
testcase_48 AC 429 ms
76,444 KB
testcase_49 AC 375 ms
76,544 KB
testcase_50 AC 312 ms
76,672 KB
testcase_51 AC 335 ms
77,048 KB
testcase_52 AC 250 ms
76,456 KB
testcase_53 AC 463 ms
76,800 KB
testcase_54 AC 385 ms
76,288 KB
testcase_55 AC 426 ms
76,544 KB
testcase_56 AC 406 ms
76,288 KB
testcase_57 AC 411 ms
76,416 KB
testcase_58 AC 199 ms
76,416 KB
testcase_59 AC 441 ms
76,544 KB
testcase_60 AC 436 ms
76,288 KB
testcase_61 AC 341 ms
76,416 KB
testcase_62 AC 475 ms
76,800 KB
testcase_63 AC 534 ms
76,732 KB
testcase_64 AC 597 ms
76,544 KB
testcase_65 AC 336 ms
76,544 KB
testcase_66 AC 502 ms
76,632 KB
testcase_67 AC 273 ms
76,544 KB
testcase_68 AC 310 ms
76,160 KB
testcase_69 AC 241 ms
76,792 KB
testcase_70 AC 272 ms
76,160 KB
testcase_71 AC 327 ms
76,288 KB
testcase_72 AC 464 ms
76,764 KB
testcase_73 AC 388 ms
76,544 KB
testcase_74 AC 498 ms
76,728 KB
testcase_75 AC 523 ms
76,800 KB
testcase_76 AC 435 ms
76,544 KB
testcase_77 AC 446 ms
76,332 KB
testcase_78 AC 544 ms
76,800 KB
testcase_79 AC 478 ms
76,672 KB
testcase_80 AC 540 ms
76,728 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))
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