結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 00:47:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 130,556 KB
最終ジャッジ日時 2024-07-21 14:32:17
合計ジャッジ時間 23,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,068 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 WA -
testcase_13 AC 38 ms
52,264 KB
testcase_14 AC 195 ms
82,456 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 103 ms
78,592 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,902 ms
130,136 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,873 ms
129,168 KB
testcase_33 WA -
testcase_34 AC 39 ms
52,736 KB
testcase_35 AC 38 ms
52,352 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):
        xi,yi,xj,yj0=xy[i][0],xy[i][1],xy[j][0],xy[j][1]
        dis[cnt][0]=(xi-xj)**2+(xi-xj)**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