結果

問題 No.2355 Unhappy Back Dance
ユーザー navel_tosnavel_tos
提出日時 2023-06-17 01:21:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,336 ms / 6,000 ms
コード長 955 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 202,616 KB
最終ジャッジ日時 2024-06-24 18:14:30
合計ジャッジ時間 41,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
88,560 KB
testcase_01 AC 129 ms
88,780 KB
testcase_02 AC 127 ms
88,208 KB
testcase_03 AC 129 ms
88,592 KB
testcase_04 AC 131 ms
88,620 KB
testcase_05 AC 130 ms
88,624 KB
testcase_06 AC 169 ms
89,696 KB
testcase_07 AC 160 ms
89,964 KB
testcase_08 AC 161 ms
89,520 KB
testcase_09 AC 161 ms
89,700 KB
testcase_10 AC 446 ms
91,364 KB
testcase_11 AC 467 ms
92,472 KB
testcase_12 AC 170 ms
89,968 KB
testcase_13 AC 167 ms
89,760 KB
testcase_14 AC 420 ms
91,832 KB
testcase_15 AC 133 ms
88,412 KB
testcase_16 AC 2,821 ms
171,184 KB
testcase_17 AC 2,591 ms
145,108 KB
testcase_18 AC 2,747 ms
167,380 KB
testcase_19 AC 2,813 ms
178,604 KB
testcase_20 AC 2,825 ms
165,408 KB
testcase_21 AC 1,270 ms
112,852 KB
testcase_22 AC 378 ms
90,708 KB
testcase_23 AC 404 ms
91,100 KB
testcase_24 AC 2,633 ms
172,908 KB
testcase_25 AC 3,336 ms
202,616 KB
testcase_26 AC 3,201 ms
200,920 KB
testcase_27 AC 1,327 ms
120,872 KB
testcase_28 AC 189 ms
89,844 KB
testcase_29 AC 225 ms
89,872 KB
testcase_30 AC 2,382 ms
153,712 KB
testcase_31 AC 1,812 ms
142,632 KB
testcase_32 AC 327 ms
90,200 KB
testcase_33 AC 1,088 ms
113,308 KB
testcase_34 AC 169 ms
89,732 KB
testcase_35 AC 187 ms
89,692 KB
testcase_36 AC 1,250 ms
113,180 KB
testcase_37 AC 766 ms
101,988 KB
testcase_38 AC 891 ms
104,840 KB
testcase_39 AC 750 ms
101,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder393F

'''
aftercontest これ解けそう
N^2 * logN が間に合うだろ

えー TLE すいません

角度でソートしなかったため たいへんなことに
'''
from fractions import Fraction as Fc
gcd=lambda x,y: gcd(y,x%y) if x%y else y
f=lambda:tuple(map(int,input().split()))

#直線の切片のx座標y座標を返す 予定でしたが多倍長整数で死
def line(P,Q):
    x1,y1=P; x2,y2=Q
    if x1==x2: return (x1,10**100)
    R=Fc(y2-y1,x2-x1); return (R,-R*x1+y1)

N=int(input()); P=[f() for _ in range(N)]; ans=0

#直線でやるとたいへんなことになってしまいます 偏角ソートで
for now in range(N):
    D=set()
    for next in range(N):
        if now==next: continue
        x,y=P[next][0]-P[now][0],P[next][1]-P[now][1]
        if x==0: R=(3*10**18,1,y<0)
        else: G=gcd(y,x); R=(y//G,x//G,x<0)
        if R not in D: D.add(R)
        else: break
    else: continue
    ans+=1
print(ans)
0