結果

問題 No.2355 Unhappy Back Dance
ユーザー navel_tosnavel_tos
提出日時 2023-06-17 01:18:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 173,388 KB
最終ジャッジ日時 2024-06-24 18:09:12
合計ジャッジ時間 19,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
88,768 KB
testcase_01 AC 134 ms
88,340 KB
testcase_02 AC 136 ms
88,416 KB
testcase_03 AC 136 ms
88,420 KB
testcase_04 AC 133 ms
88,548 KB
testcase_05 AC 134 ms
88,792 KB
testcase_06 AC 202 ms
90,112 KB
testcase_07 AC 187 ms
90,252 KB
testcase_08 AC 190 ms
90,460 KB
testcase_09 AC 187 ms
90,424 KB
testcase_10 AC 709 ms
95,496 KB
testcase_11 AC 793 ms
96,904 KB
testcase_12 AC 196 ms
90,920 KB
testcase_13 AC 193 ms
90,760 KB
testcase_14 AC 737 ms
96,700 KB
testcase_15 AC 130 ms
88,620 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 2,945 ms
112,592 KB
testcase_22 AC 705 ms
91,724 KB
testcase_23 AC 748 ms
92,096 KB
testcase_24 TLE -
testcase_25 AC 3,392 ms
118,720 KB
testcase_26 AC 3,396 ms
118,592 KB
testcase_27 AC 2,978 ms
112,572 KB
testcase_28 AC 249 ms
90,532 KB
testcase_29 AC 348 ms
90,496 KB
testcase_30 AC 5,729 ms
153,560 KB
testcase_31 AC 4,195 ms
130,452 KB
testcase_32 AC 585 ms
91,100 KB
testcase_33 AC 2,470 ms
107,304 KB
testcase_34 AC 214 ms
90,744 KB
testcase_35 AC 254 ms
90,588 KB
testcase_36 AC 2,972 ms
112,420 KB
testcase_37 AC 1,678 ms
99,520 KB
testcase_38 AC 2,004 ms
102,540 KB
testcase_39 AC 1,626 ms
98,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder393F

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

えー TLE すいません

角度でソートしなかったため たいへんなことに
'''
from fractions import Fraction as Fc
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]
        R,check=(Fc(y,x),x<0) if x!=0 else (Fc(1,3*10**18),y<0)
        if (R,check) not in D: D.add((R,check))
        else: break
    else: continue
    ans+=1
print(ans)
0