結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 208 ms
82,944 KB
testcase_15 AC 161 ms
81,148 KB
testcase_16 AC 81 ms
70,272 KB
testcase_17 AC 918 ms
104,960 KB
testcase_18 AC 110 ms
78,720 KB
testcase_19 AC 85 ms
70,784 KB
testcase_20 AC 206 ms
82,560 KB
testcase_21 AC 453 ms
90,240 KB
testcase_22 AC 268 ms
84,736 KB
testcase_23 AC 296 ms
85,760 KB
testcase_24 AC 1,994 ms
129,544 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,998 ms
130,316 KB
testcase_28 AC 1,953 ms
130,052 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 40 ms
52,480 KB
testcase_35 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    xy.append([x,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)):
    if dis[i][1]==0:
        if erase[dis[i][2]]==0:
            ans+=1
            erase[dis[i][2]]=1
    else:
        if erase[dis[i][1]]==erase[dis[i][2]]==0:
            erase[dis[i][1]] = erase[dis[i][2]]=1

print(ans)

0