結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 00:42:58
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 672 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 130,816 KB
最終ジャッジ日時 2024-07-21 14:31:19
合計ジャッジ時間 25,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
52,608 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 43 ms
52,352 KB
testcase_13 AC 42 ms
52,352 KB
testcase_14 AC 221 ms
82,560 KB
testcase_15 AC 168 ms
80,768 KB
testcase_16 AC 90 ms
69,632 KB
testcase_17 AC 944 ms
104,832 KB
testcase_18 AC 124 ms
78,592 KB
testcase_19 AC 94 ms
70,784 KB
testcase_20 AC 209 ms
82,304 KB
testcase_21 AC 456 ms
90,112 KB
testcase_22 AC 276 ms
84,992 KB
testcase_23 AC 298 ms
85,888 KB
testcase_24 AC 1,932 ms
129,408 KB
testcase_25 AC 1,951 ms
130,560 KB
testcase_26 AC 1,949 ms
129,936 KB
testcase_27 AC 1,925 ms
130,048 KB
testcase_28 AC 1,964 ms
130,312 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,965 ms
130,432 KB
testcase_32 AC 1,988 ms
130,816 KB
testcase_33 AC 1,936 ms
130,176 KB
testcase_34 AC 47 ms
52,352 KB
testcase_35 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[[0,0] for i in range(n)]
import sys
input=sys.stdin.readline #文字列入力はするな!

for i in range(n):
    x,y=map(int,input().split())

    xy[i][0]=x
    xy[i][1]=y
ans=0

dis=[[0,0,0] for i in range(n*(n-1)//2)]
cnt=0
for i in range(n-1):
    for j in range(i+1,n):
        dis[cnt][0]=(xy[i][0]-xy[j][0])**2+(xy[i][1]-xy[j][1])**2
        dis[cnt][1]=i
        dis[cnt][2]=j
        cnt+=1
dis.sort()
erase=[0]*(n)
for i in range(len(dis)):
    p,q=dis[i][1],dis[i][2]
    if p==0:
        if erase[q]==0:
            ans+=1
            erase[q]=1
    else:
        if erase[p]==erase[q]==0:
            erase[p] = erase[q]=1

print(ans)

0