結果

問題 No.2602 Real Collider
ユーザー maeshunmaeshun
提出日時 2024-01-13 14:28:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,378 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-09-28 01:28:17
合計ジャッジ時間 52,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
88,320 KB
testcase_01 AC 141 ms
88,064 KB
testcase_02 AC 135 ms
88,576 KB
testcase_03 AC 136 ms
88,320 KB
testcase_04 AC 162 ms
88,192 KB
testcase_05 AC 131 ms
88,448 KB
testcase_06 AC 139 ms
88,448 KB
testcase_07 AC 137 ms
88,448 KB
testcase_08 AC 163 ms
88,064 KB
testcase_09 AC 135 ms
88,448 KB
testcase_10 AC 1,254 ms
90,624 KB
testcase_11 AC 652 ms
90,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 561 ms
90,240 KB
testcase_16 AC 716 ms
89,984 KB
testcase_17 AC 799 ms
90,368 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 728 ms
90,112 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 402 ms
90,112 KB
testcase_27 WA -
testcase_28 AC 512 ms
90,112 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 733 ms
89,856 KB
testcase_32 AC 661 ms
90,112 KB
testcase_33 AC 701 ms
89,984 KB
testcase_34 AC 752 ms
90,752 KB
testcase_35 AC 533 ms
90,112 KB
testcase_36 AC 400 ms
89,984 KB
testcase_37 AC 780 ms
89,984 KB
testcase_38 AC 779 ms
90,112 KB
testcase_39 AC 776 ms
90,112 KB
testcase_40 AC 503 ms
89,984 KB
testcase_41 AC 814 ms
90,112 KB
testcase_42 AC 694 ms
90,112 KB
testcase_43 AC 640 ms
90,240 KB
testcase_44 AC 814 ms
90,240 KB
testcase_45 AC 685 ms
90,496 KB
testcase_46 AC 589 ms
89,984 KB
testcase_47 AC 766 ms
90,112 KB
testcase_48 AC 632 ms
90,112 KB
testcase_49 AC 574 ms
90,368 KB
testcase_50 AC 509 ms
90,112 KB
testcase_51 AC 527 ms
90,240 KB
testcase_52 AC 439 ms
89,984 KB
testcase_53 AC 731 ms
90,240 KB
testcase_54 AC 629 ms
90,112 KB
testcase_55 AC 669 ms
90,112 KB
testcase_56 AC 637 ms
89,856 KB
testcase_57 AC 627 ms
90,240 KB
testcase_58 AC 429 ms
90,368 KB
testcase_59 AC 697 ms
90,240 KB
testcase_60 AC 577 ms
90,368 KB
testcase_61 AC 606 ms
90,112 KB
testcase_62 AC 748 ms
90,368 KB
testcase_63 AC 800 ms
90,880 KB
testcase_64 AC 866 ms
89,984 KB
testcase_65 AC 584 ms
90,496 KB
testcase_66 AC 750 ms
90,112 KB
testcase_67 AC 499 ms
90,368 KB
testcase_68 AC 570 ms
90,240 KB
testcase_69 AC 476 ms
90,624 KB
testcase_70 AC 506 ms
89,984 KB
testcase_71 AC 550 ms
89,984 KB
testcase_72 AC 709 ms
89,984 KB
testcase_73 AC 640 ms
90,240 KB
testcase_74 AC 723 ms
89,984 KB
testcase_75 AC 773 ms
90,240 KB
testcase_76 AC 703 ms
90,240 KB
testcase_77 AC 727 ms
90,112 KB
testcase_78 AC 820 ms
90,112 KB
testcase_79 AC 784 ms
91,392 KB
testcase_80 AC 815 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
def main():
    q = int(input())
    x1, y1, x2, y2, x3, y3 = map(int, input().split())
    r = 0
    if (x2 - x1) * (y3 - y1) == (x3 - x1) * (y2 - y1):
        Mx = max(x1, max(x2, x3))
        mx = min(x1, min(x2, x3))
        My = max(y1, max(y2, y3))
        my = min(y1, min(y2, y3))
        r = (Fraction(Mx - mx,2)) ** 2 + (Fraction(My - my,2)) ** 2
        xg = Fraction(mx + Mx,2)
        yg = Fraction(my + My,2)
        for _ in range(q):
            x, y = map(int, input().split())
            R = (xg - x) ** 2 + (yg - y) ** 2
            if R <= r:
                print("Yes")
            else:
                print("No")
    else:
        det = (x2 - x1) * (y3 - y1) - (x3 - x1) * (y2 - y1)
        m = [[y3 - y1, -y2 + y1], [-x3+x1, x2 -x1]]
        f = [Fraction(x2 ** 2 + y2 ** 2,2) - Fraction(x1 ** 2 + y1 ** 2,2), Fraction(x3 ** 2 + y3 ** 2,2) - Fraction(x1 ** 2 + y1 ** 2,2)]
        e = [m[0][0] * f[0] + m[0][1] * f[1], 
             m[1][0] * f[0] + m[1][1] * f[1]]
        xg = Fraction(e[0],det)
        yg = Fraction(e[1],det)
        r = (xg-x1)**2 + (yg-y1)**2
        for _ in range(q):
            x, y = map(int, input().split())
            R = (xg - x) ** 2 + (yg - y) ** 2
            if R <= r:
                print("Yes")
            else:
                print("No")

if __name__ == "__main__":
    main()
0