結果

問題 No.2355 Unhappy Back Dance
ユーザー titiatitia
提出日時 2023-06-18 02:07:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,736 ms / 6,000 ms
コード長 1,100 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 88,780 KB
最終ジャッジ日時 2024-06-25 14:32:43
合計ジャッジ時間 28,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 39 ms
52,960 KB
testcase_04 AC 41 ms
52,656 KB
testcase_05 AC 40 ms
52,992 KB
testcase_06 AC 551 ms
83,136 KB
testcase_07 AC 561 ms
82,956 KB
testcase_08 AC 822 ms
83,856 KB
testcase_09 AC 834 ms
83,936 KB
testcase_10 AC 719 ms
84,072 KB
testcase_11 AC 745 ms
84,660 KB
testcase_12 AC 1,573 ms
83,856 KB
testcase_13 AC 1,736 ms
84,100 KB
testcase_14 AC 817 ms
84,180 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 1,567 ms
88,128 KB
testcase_17 AC 1,555 ms
88,720 KB
testcase_18 AC 1,561 ms
88,780 KB
testcase_19 AC 1,561 ms
88,348 KB
testcase_20 AC 1,559 ms
87,368 KB
testcase_21 AC 682 ms
79,092 KB
testcase_22 AC 190 ms
76,700 KB
testcase_23 AC 197 ms
76,608 KB
testcase_24 AC 1,423 ms
87,596 KB
testcase_25 AC 799 ms
80,340 KB
testcase_26 AC 801 ms
80,800 KB
testcase_27 AC 689 ms
78,964 KB
testcase_28 AC 81 ms
73,344 KB
testcase_29 AC 106 ms
76,156 KB
testcase_30 AC 1,304 ms
85,048 KB
testcase_31 AC 967 ms
81,440 KB
testcase_32 AC 158 ms
76,284 KB
testcase_33 AC 573 ms
78,216 KB
testcase_34 AC 73 ms
70,784 KB
testcase_35 AC 83 ms
72,960 KB
testcase_36 AC 686 ms
78,728 KB
testcase_37 AC 407 ms
77,088 KB
testcase_38 AC 484 ms
77,824 KB
testcase_39 AC 395 ms
77,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from math import gcd
from operator import itemgetter

N=int(input())
XY=[list(map(int,input().split())) for i in range(N)]


def angle(a,b,c,d):
    x,y=a-c,b-d

    if x==0:
        return (0,1)
    if y==0:
        return (1,0)

    if x<0:
        x=-x
        y=-y

    g=abs(gcd(x,y))

    x//=g
    y//=g

    return (x,y)

        

USE=[0]*N

for i in range(N):
    D=dict()
    for j in range(N):
        if i==j:
            continue

        a,b=XY[i]
        c,d=XY[j]

        k=angle(a,b,c,d)

        if k in D:
            D[k].append(j)
        else:
            D[k]=[j]

    #print("!",D)

    for d in D:
        if len(D[d])<=1:
            continue

        LIST=[(XY[i][0],XY[i][1],i)]

        for d in D[d]:
            LIST.append((XY[d][0],XY[d][1],d))

        LIST.sort(key=itemgetter(0))
        LIST.sort(key=itemgetter(1))

        #print(d,LIST)

        for j in range(2,len(LIST)):
            USE[LIST[j][2]]=1

        for j in range(len(LIST)-3,-1,-1):
            USE[LIST[j][2]]=1

print(sum(USE))     
        
        
0