結果

問題 No.2602 Real Collider
ユーザー anonymouslyanonymously
提出日時 2024-01-12 23:23:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,104 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-28 00:10:49
合計ジャッジ時間 46,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 1,563 ms
10,624 KB
testcase_11 AC 575 ms
10,752 KB
testcase_12 AC 716 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 762 ms
10,752 KB
testcase_15 AC 431 ms
10,752 KB
testcase_16 AC 651 ms
10,752 KB
testcase_17 AC 721 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 608 ms
10,752 KB
testcase_20 AC 839 ms
10,752 KB
testcase_21 AC 499 ms
10,752 KB
testcase_22 AC 614 ms
10,752 KB
testcase_23 AC 401 ms
10,752 KB
testcase_24 AC 560 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 437 ms
10,752 KB
testcase_27 AC 666 ms
10,752 KB
testcase_28 AC 691 ms
10,752 KB
testcase_29 AC 578 ms
10,752 KB
testcase_30 AC 623 ms
10,752 KB
testcase_31 AC 655 ms
10,880 KB
testcase_32 AC 572 ms
10,752 KB
testcase_33 AC 659 ms
10,752 KB
testcase_34 AC 665 ms
10,752 KB
testcase_35 AC 423 ms
10,752 KB
testcase_36 AC 416 ms
10,624 KB
testcase_37 AC 712 ms
10,752 KB
testcase_38 AC 727 ms
10,752 KB
testcase_39 AC 714 ms
10,752 KB
testcase_40 AC 355 ms
10,880 KB
testcase_41 AC 798 ms
10,880 KB
testcase_42 AC 620 ms
10,752 KB
testcase_43 AC 643 ms
10,880 KB
testcase_44 AC 815 ms
10,752 KB
testcase_45 AC 511 ms
10,752 KB
testcase_46 AC 480 ms
10,752 KB
testcase_47 AC 729 ms
10,752 KB
testcase_48 AC 554 ms
10,880 KB
testcase_49 AC 483 ms
10,752 KB
testcase_50 AC 368 ms
10,880 KB
testcase_51 AC 402 ms
10,752 KB
testcase_52 AC 282 ms
10,752 KB
testcase_53 AC 667 ms
10,752 KB
testcase_54 AC 518 ms
10,880 KB
testcase_55 AC 581 ms
10,880 KB
testcase_56 AC 588 ms
10,880 KB
testcase_57 AC 525 ms
10,880 KB
testcase_58 AC 221 ms
10,752 KB
testcase_59 AC 621 ms
10,752 KB
testcase_60 AC 601 ms
10,880 KB
testcase_61 AC 445 ms
10,752 KB
testcase_62 AC 681 ms
10,880 KB
testcase_63 AC 780 ms
10,880 KB
testcase_64 AC 869 ms
10,752 KB
testcase_65 AC 444 ms
10,752 KB
testcase_66 AC 716 ms
10,752 KB
testcase_67 AC 344 ms
10,752 KB
testcase_68 AC 405 ms
10,752 KB
testcase_69 AC 284 ms
10,752 KB
testcase_70 AC 348 ms
10,752 KB
testcase_71 AC 425 ms
10,752 KB
testcase_72 AC 631 ms
10,624 KB
testcase_73 AC 526 ms
10,752 KB
testcase_74 AC 658 ms
10,752 KB
testcase_75 AC 728 ms
10,880 KB
testcase_76 AC 606 ms
10,752 KB
testcase_77 AC 654 ms
10,752 KB
testcase_78 AC 791 ms
10,752 KB
testcase_79 AC 693 ms
10,752 KB
testcase_80 AC 791 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
Xa,Ya,Xb,Yb,Xc,Yc=map(int,input().split())
#各頂点の「内積」
inA=(Xb-Xa)*(Xc-Xa)+(Yb-Ya)*(Yc-Ya)
inB=(Xc-Xb)*(Xa-Xb)+(Yc-Yb)*(Ya-Yb)
inC=(Xa-Xc)*(Xb-Xc)+(Ya-Yc)*(Yb-Yc)

#中心
X0=None
Y0=None
det=1
if inA<0:
    X0=(Xb+Xc)/2
    Y0=(Yb+Yc)/2
elif inB<0:
    X0=(Xc+Xa)/2
    Y0=(Yc+Ya)/2
elif inC<0:
    X0=(Xa+Xb)/2
    Y0=(Ya+Yb)/2
else:
    #(X0-Xa)**2+(Y0-Ya)**2==(X0-Xb)**2+(Y0-Yb)**2==(X0-Xc)**2+(Y0-Yc)**2
    #-2*Xa*X0+Xa**2-2*Ya*Y0+Ya**2==-2*Xb*X0+Xb**2-2*Yb*Y0+Yb**2==-2*Xc*X0+Xc**2-2*Yc*Y0+Yc**2
    #2*(Xb-Xa)*X0+2*(Yb-Ya)*Y0==Xb**2-Xa**2+Yb**2-Ya**2
    #2*(Xc-Xa)*X0+2*(Yc-Ya)*Y0==Xc**2-Xa**2+Yc**2-Ya**2
    det=4*((Xb-Xa)*(Yc-Ya)-(Yb-Ya)*(Xc-Xa))
    #X0=(2*(Yc-Ya)(Xb**2-Xa**2+Yb**2-Ya**2)-2*(Yb-Ya)(Xc**2-Xa**2+Yc**2-Ya**2))/det
    X0=(2*(Yc-Ya)*(Xb**2-Xa**2+Yb**2-Ya**2)-2*(Yb-Ya)*(Xc**2-Xa**2+Yc**2-Ya**2))
    Y0=(-2*(Xc-Xa)*(Xb**2-Xa**2+Yb**2-Ya**2)+2*(Xb-Xa)*(Xc**2-Xa**2+Yc**2-Ya**2))

for i in range(Q):
    x,y=map(int,input().split())
    if (det*x-X0)**2+(det*y-Y0)**2>(det*Xa-X0)**2+(det*Ya-Y0)**2:
        print("No")
    else:
        print("Yes")
0