結果
問題 | No.2602 Real Collider |
ユーザー | mkawa2 |
提出日時 | 2024-01-12 22:04:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,347 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 96,768 KB |
最終ジャッジ日時 | 2024-09-27 22:20:33 |
合計ジャッジ時間 | 11,844 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
52,608 KB |
testcase_01 | AC | 39 ms
52,608 KB |
testcase_02 | AC | 39 ms
52,864 KB |
testcase_03 | AC | 40 ms
53,120 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
52,608 KB |
testcase_07 | AC | 35 ms
52,352 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 101 ms
82,460 KB |
testcase_16 | AC | 118 ms
85,080 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 130 ms
87,936 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 118 ms
85,120 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 122 ms
85,668 KB |
testcase_38 | AC | 121 ms
86,200 KB |
testcase_39 | WA | - |
testcase_40 | AC | 100 ms
80,768 KB |
testcase_41 | AC | 133 ms
87,796 KB |
testcase_42 | AC | 114 ms
84,280 KB |
testcase_43 | AC | 115 ms
84,904 KB |
testcase_44 | AC | 138 ms
87,680 KB |
testcase_45 | AC | 111 ms
83,200 KB |
testcase_46 | AC | 107 ms
82,560 KB |
testcase_47 | WA | - |
testcase_48 | AC | 114 ms
83,584 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 103 ms
81,664 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 112 ms
84,480 KB |
testcase_56 | WA | - |
testcase_57 | AC | 114 ms
83,328 KB |
testcase_58 | AC | 87 ms
79,056 KB |
testcase_59 | AC | 123 ms
84,480 KB |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 117 ms
85,376 KB |
testcase_63 | AC | 126 ms
86,428 KB |
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 | AC | 118 ms
85,120 KB |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | AC | 114 ms
85,248 KB |
testcase_78 | WA | - |
testcase_79 | WA | - |
testcase_80 | AC | 126 ms
87,296 KB |
ソースコード
import sys # sys.setrecursionlimit(1000005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = -1-(-1 << 31) # inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 q=II() xa,ya,xb,yb,xc,yc=LI() xy=LLI(q) xm=(xa+xb)/2 ym=(ya+yb)/2 xn=(xc+xb)/2 yn=(yc+yb)/2 vx=ya-yb vy=xb-xa wx=yb-yc wy=xc-xb mat=[[vx,-wx,xn-xm], [vy,-wy,yn-ym]] if mat[0][0]==0: mat[0],mat[1]=mat[1],mat[0] d=mat[0][0] mat[0][0]=1 mat[0][1]/=d mat[0][2]/=d c=mat[1][0] mat[1][0]=0 mat[1][1]-=mat[0][1]*c mat[1][2]-=mat[0][2]*c if mat[1][1]: s=mat[1][2]/mat[1][1] xo,yo=xn+wx*s,yn+wy*s else: xo=(xa+xb+xc)/3 yo=(ya+yb+yc)/3 r2=(xa-xo)**2+(ya-yo)**2 for x,y in xy: if (x-xo)**2+(y-yo)**2>r2: print("No") else: print("Yes")