結果
問題 | No.947 ABC包囲網 |
ユーザー | mkawa2 |
提出日時 | 2019-12-16 18:18:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,035 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-07-02 20:18:37 |
合計ジャッジ時間 | 6,484 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
16,256 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,880 KB |
testcase_03 | AC | 27 ms
11,008 KB |
testcase_04 | AC | 28 ms
10,880 KB |
testcase_05 | WA | - |
testcase_06 | AC | 27 ms
11,008 KB |
testcase_07 | WA | - |
testcase_08 | AC | 29 ms
10,880 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | AC | 28 ms
10,880 KB |
testcase_11 | AC | 29 ms
11,008 KB |
testcase_12 | AC | 29 ms
11,008 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 37 ms
10,880 KB |
testcase_17 | WA | - |
testcase_18 | AC | 37 ms
10,880 KB |
testcase_19 | AC | 41 ms
10,880 KB |
testcase_20 | AC | 40 ms
11,008 KB |
testcase_21 | AC | 39 ms
11,008 KB |
testcase_22 | AC | 39 ms
11,008 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 37 ms
10,752 KB |
testcase_26 | AC | 35 ms
11,008 KB |
testcase_27 | AC | 39 ms
11,008 KB |
testcase_28 | AC | 40 ms
11,392 KB |
testcase_29 | TLE | - |
testcase_30 | AC | 36 ms
11,904 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
from bisect import * from math import * import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def main(): n = int(input()) rad = [] rxy = [] for _ in range(n): x, y = MI() rxy.append((atan2(y, x), x, y)) rxy.sort() rad = [r for r, x, y in rxy] #print(rxy) #print(rad) ans = 0 for i, (r0, x0, y0) in enumerate(rxy[:-2]): if y0 >= 0: break L = bisect_right(rad, atan2(-y0, -x0)) for r1, x1, y1 in rxy[i + 1:]: if r0 == r1: continue if r1 >= atan2(-y0, -x0): break R = bisect_left(rad, atan2(-y1, -x1)) if y1 >= 0: R = n ans += R - L #print(i, r0, x0, y0, atan2(-y0, -x0), L) #print(r1, x1, y1, atan2(-y1, -x1), R) print(ans) main()