結果

問題 No.947 ABC包囲網
ユーザー mkawa2mkawa2
提出日時 2019-12-16 16:02:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-02 19:57:12
合計ジャッジ時間 25,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,520 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,864 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 37 ms
53,120 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 47 ms
73,640 KB
testcase_17 AC 49 ms
73,856 KB
testcase_18 AC 58 ms
75,812 KB
testcase_19 AC 54 ms
75,976 KB
testcase_20 AC 55 ms
75,904 KB
testcase_21 AC 55 ms
75,764 KB
testcase_22 AC 54 ms
76,168 KB
testcase_23 AC 54 ms
75,316 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 657 ms
77,648 KB
testcase_29 AC 688 ms
77,040 KB
testcase_30 WA -
testcase_31 AC 1,140 ms
77,468 KB
testcase_32 AC 707 ms
77,128 KB
testcase_33 AC 1,194 ms
77,440 KB
testcase_34 AC 1,158 ms
77,568 KB
testcase_35 AC 1,163 ms
77,252 KB
testcase_36 AC 689 ms
76,908 KB
testcase_37 AC 1,154 ms
77,784 KB
testcase_38 AC 1,148 ms
77,056 KB
testcase_39 AC 1,157 ms
77,056 KB
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 AC 1,137 ms
76,940 KB
testcase_50 WA -
testcase_51 AC 46 ms
63,872 KB
testcase_52 AC 46 ms
64,128 KB
testcase_53 AC 46 ms
63,360 KB
testcase_54 AC 38 ms
52,736 KB
testcase_55 AC 37 ms
53,248 KB
testcase_56 AC 37 ms
52,992 KB
testcase_57 AC 61 ms
75,544 KB
testcase_58 AC 60 ms
75,520 KB
testcase_59 AC 59 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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())
    xy=[LI() for _ in range(n)]
    rad=[atan2(y,x) for x,y in xy]
    #print(rad)
    rad.sort()
    #rad+=[r+2*pi for r in rad]
    #print(rad)
    ans=0
    for i in range(n-2):
        r0=rad[i]
        if r0>pi:break
        L=bisect_right(rad,r0+pi)
        for j in range(i+1,n-1):
            r1=rad[j]
            if r0+pi<=r1:break
            R=bisect_left(rad,r1+pi)
            #print(i,j,r0,r1,L,R)
            ans+=R-L
    print(ans)

main()
0