結果

問題 No.2602 Real Collider
ユーザー maeshunmaeshun
提出日時 2024-01-13 13:55:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,330 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-28 01:23:23
合計ジャッジ時間 30,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 39 ms
53,504 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 32 ms
52,480 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 32 ms
52,224 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 842 ms
76,800 KB
testcase_11 AC 363 ms
76,608 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 290 ms
76,800 KB
testcase_16 AC 434 ms
76,544 KB
testcase_17 AC 460 ms
76,416 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 524 ms
76,544 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 299 ms
76,800 KB
testcase_27 WA -
testcase_28 AC 434 ms
76,544 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 405 ms
76,544 KB
testcase_32 AC 364 ms
76,288 KB
testcase_33 AC 415 ms
76,416 KB
testcase_34 AC 436 ms
76,416 KB
testcase_35 AC 297 ms
76,436 KB
testcase_36 AC 289 ms
76,764 KB
testcase_37 AC 450 ms
76,544 KB
testcase_38 AC 439 ms
76,544 KB
testcase_39 AC 436 ms
76,928 KB
testcase_40 AC 259 ms
76,808 KB
testcase_41 AC 487 ms
76,544 KB
testcase_42 AC 400 ms
76,520 KB
testcase_43 AC 396 ms
76,544 KB
testcase_44 AC 491 ms
76,544 KB
testcase_45 AC 356 ms
76,544 KB
testcase_46 AC 335 ms
76,500 KB
testcase_47 AC 455 ms
76,504 KB
testcase_48 AC 369 ms
76,416 KB
testcase_49 AC 323 ms
76,416 KB
testcase_50 AC 268 ms
76,416 KB
testcase_51 AC 288 ms
76,800 KB
testcase_52 AC 222 ms
76,416 KB
testcase_53 AC 410 ms
76,720 KB
testcase_54 AC 343 ms
76,416 KB
testcase_55 AC 372 ms
76,416 KB
testcase_56 AC 364 ms
76,544 KB
testcase_57 AC 352 ms
76,800 KB
testcase_58 AC 193 ms
76,844 KB
testcase_59 AC 420 ms
76,800 KB
testcase_60 AC 384 ms
76,544 KB
testcase_61 AC 318 ms
76,800 KB
testcase_62 AC 424 ms
76,800 KB
testcase_63 AC 466 ms
76,544 KB
testcase_64 AC 528 ms
76,728 KB
testcase_65 AC 314 ms
76,544 KB
testcase_66 AC 448 ms
76,672 KB
testcase_67 AC 255 ms
76,524 KB
testcase_68 AC 288 ms
76,468 KB
testcase_69 AC 229 ms
76,552 KB
testcase_70 AC 250 ms
76,544 KB
testcase_71 AC 312 ms
76,288 KB
testcase_72 AC 411 ms
76,832 KB
testcase_73 AC 354 ms
76,416 KB
testcase_74 AC 418 ms
76,732 KB
testcase_75 AC 439 ms
76,464 KB
testcase_76 AC 389 ms
76,672 KB
testcase_77 AC 406 ms
76,800 KB
testcase_78 AC 486 ms
76,544 KB
testcase_79 AC 444 ms
76,416 KB
testcase_80 AC 474 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = (Mx - mx) ** 2 + (My - my) ** 2
        xg = (mx + Mx)
        yg = (my + My)
        for _ in range(q):
            x, y = map(int, input().split())
            x *= 2
            y *= 2
            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 = [x2 ** 2 + y2 ** 2 - x1 ** 2 - y1 ** 2, x3 ** 2 + y3 ** 2 - x1 ** 2 - y1 ** 2]
        e = [m[0][0] * f[0] + m[0][1] * f[1],
             m[1][0] * f[0] + m[1][1] * f[1]]
        r = (e[0] - 2 * det * x1) ** 2 + (e[1] - 2 * det * y1) ** 2
        for _ in range(q):
            x, y = map(int, input().split())
            x *= 2 * det
            y *= 2 * det
            R = (e[0] - x) ** 2 + (e[1] - y) ** 2
            if R <= r:
                print("Yes")
            else:
                print("No")

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