結果

問題 No.2602 Real Collider
ユーザー ゼットゼット
提出日時 2024-01-12 22:51:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 947 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 77,252 KB
最終ジャッジ日時 2024-09-27 23:37:56
合計ジャッジ時間 32,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,520 KB
testcase_01 AC 37 ms
53,148 KB
testcase_02 AC 35 ms
53,176 KB
testcase_03 AC 38 ms
53,572 KB
testcase_04 AC 36 ms
52,884 KB
testcase_05 AC 37 ms
52,744 KB
testcase_06 AC 36 ms
52,988 KB
testcase_07 AC 38 ms
52,452 KB
testcase_08 AC 36 ms
52,472 KB
testcase_09 AC 37 ms
52,924 KB
testcase_10 AC 925 ms
76,844 KB
testcase_11 AC 392 ms
76,796 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 308 ms
76,548 KB
testcase_16 AC 449 ms
76,640 KB
testcase_17 AC 491 ms
76,432 KB
testcase_18 AC 356 ms
76,632 KB
testcase_19 WA -
testcase_20 AC 557 ms
77,008 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 315 ms
76,512 KB
testcase_27 WA -
testcase_28 AC 461 ms
76,872 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 438 ms
76,460 KB
testcase_32 AC 383 ms
76,648 KB
testcase_33 AC 431 ms
76,784 KB
testcase_34 AC 444 ms
76,872 KB
testcase_35 AC 305 ms
76,808 KB
testcase_36 AC 302 ms
76,520 KB
testcase_37 AC 476 ms
76,668 KB
testcase_38 AC 503 ms
76,728 KB
testcase_39 AC 460 ms
76,712 KB
testcase_40 AC 262 ms
76,536 KB
testcase_41 AC 522 ms
76,400 KB
testcase_42 AC 429 ms
76,524 KB
testcase_43 AC 442 ms
76,568 KB
testcase_44 AC 536 ms
76,972 KB
testcase_45 AC 377 ms
76,512 KB
testcase_46 AC 355 ms
76,932 KB
testcase_47 AC 497 ms
76,648 KB
testcase_48 AC 386 ms
76,860 KB
testcase_49 AC 354 ms
76,896 KB
testcase_50 AC 280 ms
76,888 KB
testcase_51 AC 297 ms
76,512 KB
testcase_52 AC 225 ms
76,532 KB
testcase_53 AC 450 ms
76,440 KB
testcase_54 AC 363 ms
77,056 KB
testcase_55 AC 400 ms
76,660 KB
testcase_56 AC 394 ms
76,880 KB
testcase_57 AC 375 ms
76,504 KB
testcase_58 AC 189 ms
77,040 KB
testcase_59 AC 431 ms
76,324 KB
testcase_60 AC 395 ms
76,512 KB
testcase_61 AC 340 ms
76,380 KB
testcase_62 AC 457 ms
76,888 KB
testcase_63 AC 510 ms
76,464 KB
testcase_64 AC 570 ms
76,948 KB
testcase_65 AC 311 ms
76,612 KB
testcase_66 AC 484 ms
77,128 KB
testcase_67 AC 269 ms
76,452 KB
testcase_68 AC 302 ms
76,532 KB
testcase_69 AC 232 ms
76,656 KB
testcase_70 AC 262 ms
76,544 KB
testcase_71 AC 321 ms
77,060 KB
testcase_72 AC 431 ms
76,720 KB
testcase_73 AC 390 ms
76,664 KB
testcase_74 AC 440 ms
76,664 KB
testcase_75 AC 469 ms
76,608 KB
testcase_76 AC 417 ms
76,192 KB
testcase_77 AC 449 ms
76,372 KB
testcase_78 AC 515 ms
76,944 KB
testcase_79 AC 459 ms
76,752 KB
testcase_80 AC 526 ms
76,896 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)
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