結果

問題 No.947 ABC包囲網
ユーザー titiatitia
提出日時 2019-12-10 02:24:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 737 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-06-23 13:10:32
合計ジャッジ時間 10,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
93,824 KB
testcase_01 AC 135 ms
88,320 KB
testcase_02 AC 135 ms
87,936 KB
testcase_03 AC 132 ms
88,192 KB
testcase_04 AC 136 ms
88,320 KB
testcase_05 AC 135 ms
88,192 KB
testcase_06 AC 132 ms
88,192 KB
testcase_07 AC 137 ms
88,448 KB
testcase_08 AC 138 ms
88,192 KB
testcase_09 AC 135 ms
88,320 KB
testcase_10 AC 136 ms
88,448 KB
testcase_11 AC 134 ms
88,448 KB
testcase_12 AC 137 ms
88,320 KB
testcase_13 AC 137 ms
88,448 KB
testcase_14 AC 136 ms
88,404 KB
testcase_15 AC 327 ms
91,256 KB
testcase_16 AC 219 ms
89,856 KB
testcase_17 AC 251 ms
89,984 KB
testcase_18 AC 270 ms
90,336 KB
testcase_19 AC 267 ms
90,496 KB
testcase_20 AC 264 ms
89,728 KB
testcase_21 AC 267 ms
90,240 KB
testcase_22 AC 267 ms
90,368 KB
testcase_23 AC 280 ms
90,752 KB
testcase_24 AC 301 ms
90,052 KB
testcase_25 AC 283 ms
90,844 KB
testcase_26 AC 275 ms
89,984 KB
testcase_27 AC 283 ms
90,432 KB
testcase_28 AC 206 ms
90,020 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
import sys
input = sys.stdin.readline

n=int(input())
P=[tuple(map(int,input().split())) for i in range(n)]

Q0=[]
Q1=[]

for x,y in P:
    if x>0:
        Q1.append(Fraction(y,x))
    elif x==0:
        if y>0:
            Q1.append(float("inf"))
        else:
            Q0.append(float("inf"))

    else:
        Q0.append(Fraction(y,x))
        
Q0.sort()
Q1.sort()

ANS=0
import bisect

for i in range(len(Q0)-1):
    for j in range(i+1,len(Q0)):
        ANS+=max(0,bisect.bisect_left(Q1,Q0[j])-bisect.bisect_right(Q1,Q0[i]))

for i in range(len(Q1)-1):
    for j in range(i+1,len(Q1)):
        ANS+=max(0,bisect.bisect_left(Q0,Q1[j])-bisect.bisect_right(Q0,Q1[i]))
        
print(ANS)

            
0