結果
問題 | No.2602 Real Collider |
ユーザー | cleantted |
提出日時 | 2023-11-27 05:35:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,758 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 127,616 KB |
最終ジャッジ日時 | 2024-09-26 12:09:09 |
合計ジャッジ時間 | 22,525 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
90,240 KB |
testcase_01 | AC | 160 ms
89,984 KB |
testcase_02 | AC | 159 ms
90,240 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 259 ms
109,184 KB |
testcase_13 | AC | 216 ms
98,688 KB |
testcase_14 | AC | 266 ms
109,952 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 227 ms
102,912 KB |
testcase_19 | AC | 242 ms
105,984 KB |
testcase_20 | WA | - |
testcase_21 | AC | 230 ms
103,040 KB |
testcase_22 | AC | 240 ms
105,856 KB |
testcase_23 | AC | 224 ms
99,840 KB |
testcase_24 | AC | 236 ms
103,552 KB |
testcase_25 | AC | 239 ms
104,704 KB |
testcase_26 | WA | - |
testcase_27 | AC | 252 ms
106,624 KB |
testcase_28 | WA | - |
testcase_29 | AC | 240 ms
105,728 KB |
testcase_30 | AC | 240 ms
106,624 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | WA | - |
testcase_73 | WA | - |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | WA | - |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | WA | - |
ソースコード
import copy import heapq import itertools import math import operator import sys from bisect import bisect, bisect_left, bisect_right, insort from collections import Counter, deque from fractions import Fraction from functools import cmp_to_key, lru_cache, partial from inspect import currentframe from math import ceil, gcd, log10, pi, sqrt # import pypyjit # pypyjit.set_param('max_unroll_recursion=-1') input = sys.stdin.readline sys.setrecursionlimit(10000000) # mod = 10 ** 9 + 7 mod = 998244353 # mod = 1 << 128 # mod = 10 ** 30 + 1 INF = 1 << 61 DIFF = 10 ** -9 DX = [1, 0, -1, 0, 1, 1, -1, -1] DY = [0, 1, 0, -1, 1, -1, 1, -1] def read_values(): return tuple(map(int, input().split())) def read_index(): return tuple(map(lambda x: int(x) - 1, input().split())) def read_list(): return list(read_values()) def read_lists(N): return [read_list() for _ in range(N)] def dprint(*values): print(*values, file=sys.stderr) def dprint2(*values): names = {id(v): k for k, v in currentframe().f_back.f_locals.items()} dprint(", ".join(f"{names.get(id(value), '???')}={repr(value)}" for value in values)) def main(): Q = int(input()) XA, YA, XB, YB, XC, YC = read_list() L = read_lists(Q) def dist2(x1, y1, x2, y2): return (x1 - x2) ** 2 + (y1 - y2) ** 2 def f(x1, y1, x2, y2): px = (x1 + x2) / 2 py = (y1 + y2) / 2 return dist2(px, py, x1, y1), px, py d, px, py = max( f(XA, YA, XB, YB), f(XB, YB, XC, YC), f(XC, YC, XA, YA), ) res = [] for x, y in L: d2 = dist2(x, y, px, py) if d + DIFF >= d2: res.append("Yes") else: res.append("No") print(*res, sep="\n") if __name__ == "__main__": main()