結果

問題 No.2602 Real Collider
ユーザー pitPpitP
提出日時 2024-01-12 22:52:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,464 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-09-27 23:39:45
合計ジャッジ時間 31,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,488 KB
testcase_01 AC 34 ms
53,780 KB
testcase_02 AC 34 ms
52,372 KB
testcase_03 AC 36 ms
54,920 KB
testcase_04 AC 33 ms
52,204 KB
testcase_05 AC 34 ms
52,752 KB
testcase_06 AC 32 ms
53,664 KB
testcase_07 AC 35 ms
53,868 KB
testcase_08 AC 35 ms
52,892 KB
testcase_09 AC 34 ms
52,608 KB
testcase_10 AC 841 ms
76,416 KB
testcase_11 AC 357 ms
75,912 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 284 ms
76,044 KB
testcase_16 AC 413 ms
75,956 KB
testcase_17 AC 432 ms
76,148 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 523 ms
76,568 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 288 ms
76,440 KB
testcase_27 WA -
testcase_28 AC 434 ms
75,976 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 416 ms
76,056 KB
testcase_32 AC 369 ms
76,104 KB
testcase_33 AC 406 ms
75,956 KB
testcase_34 AC 417 ms
76,036 KB
testcase_35 AC 281 ms
76,484 KB
testcase_36 AC 280 ms
76,440 KB
testcase_37 AC 440 ms
76,296 KB
testcase_38 AC 444 ms
76,156 KB
testcase_39 AC 445 ms
75,944 KB
testcase_40 AC 243 ms
76,492 KB
testcase_41 AC 473 ms
76,432 KB
testcase_42 AC 392 ms
76,240 KB
testcase_43 AC 407 ms
76,088 KB
testcase_44 AC 502 ms
76,372 KB
testcase_45 AC 342 ms
75,896 KB
testcase_46 AC 317 ms
75,876 KB
testcase_47 AC 439 ms
76,548 KB
testcase_48 AC 347 ms
75,932 KB
testcase_49 AC 304 ms
76,300 KB
testcase_50 AC 258 ms
75,900 KB
testcase_51 AC 269 ms
76,072 KB
testcase_52 AC 207 ms
76,436 KB
testcase_53 AC 404 ms
76,016 KB
testcase_54 AC 329 ms
76,220 KB
testcase_55 AC 373 ms
76,260 KB
testcase_56 AC 363 ms
76,440 KB
testcase_57 AC 357 ms
75,840 KB
testcase_58 AC 181 ms
76,448 KB
testcase_59 AC 398 ms
76,016 KB
testcase_60 AC 370 ms
76,284 KB
testcase_61 AC 299 ms
76,384 KB
testcase_62 AC 406 ms
75,828 KB
testcase_63 AC 460 ms
76,036 KB
testcase_64 AC 507 ms
76,020 KB
testcase_65 AC 291 ms
76,280 KB
testcase_66 AC 434 ms
76,500 KB
testcase_67 AC 244 ms
75,964 KB
testcase_68 AC 280 ms
75,968 KB
testcase_69 AC 224 ms
76,440 KB
testcase_70 AC 250 ms
76,240 KB
testcase_71 AC 291 ms
76,092 KB
testcase_72 AC 411 ms
75,960 KB
testcase_73 AC 333 ms
76,524 KB
testcase_74 AC 407 ms
76,312 KB
testcase_75 AC 438 ms
75,960 KB
testcase_76 AC 381 ms
76,104 KB
testcase_77 AC 393 ms
76,444 KB
testcase_78 AC 470 ms
76,228 KB
testcase_79 AC 427 ms
75,892 KB
testcase_80 AC 468 ms
76,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://qiita.com/tatesuke/items/59133758ec25146766c3
Q = int(input())
a, b, c, d, e, f = map(int, input().split())


if (c - a) * (f - b) - (d - b) * (e - a) == 0:
    px_nume = max(a, c, e) + min(a, c, e)
    px_deno = 2

    py_nume = max(b, d, f) + min(b, d, f)
    py_deno = 2
    r2 = py_deno ** 2 * (px_nume - a * px_deno) ** 2 + px_deno ** 2 * (py_nume - b * py_deno) ** 2
    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
else:
    aa = a * a
    bb = b * b
    cc = c * c
    dd = d * d
    ee = e * e
    ff = f * f

    py_nume = (e - a) * (aa + bb - cc - dd) - (c - a) * (aa + bb - ee- ff)
    py_deno = 2 * (e - a)*(b - d) - 2 * (c - a) * (b - f)

    if c == a:
        px_nume = 2 * (b - f) * py_nume - (aa + bb - ee - ff) * py_deno
        px_deno = 2 * (e - a) * py_deno
    else:
        px_nume = 2 * (b - d) * py_nume - (aa + bb - cc - dd) * py_deno
        px_deno = 2 * (c - a) * py_deno

    r2 = py_deno ** 2 * (px_nume - a * px_deno) ** 2 + px_deno ** 2 * (py_nume - b * py_deno) ** 2
    for _ in range(Q):
        x, y = map(int, input().split())
        R2 = py_deno ** 2 * (px_nume - x * px_deno) ** 2 + px_deno ** 2 * (py_nume - y * py_deno) ** 2

        if R2 > r2:
            print("No")
        else:
            print("Yes")
0