結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 00:31:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,727 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 136,908 KB
最終ジャッジ日時 2024-07-21 14:23:41
合計ジャッジ時間 21,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 185 ms
84,608 KB
testcase_15 AC 142 ms
81,868 KB
testcase_16 AC 72 ms
71,284 KB
testcase_17 AC 817 ms
109,884 KB
testcase_18 AC 94 ms
79,104 KB
testcase_19 AC 74 ms
72,320 KB
testcase_20 AC 180 ms
84,480 KB
testcase_21 AC 385 ms
95,872 KB
testcase_22 AC 235 ms
87,552 KB
testcase_23 AC 252 ms
89,032 KB
testcase_24 AC 1,665 ms
136,908 KB
testcase_25 AC 1,686 ms
136,320 KB
testcase_26 AC 1,712 ms
136,616 KB
testcase_27 AC 1,725 ms
136,672 KB
testcase_28 AC 1,715 ms
136,396 KB
testcase_29 AC 1,700 ms
136,312 KB
testcase_30 AC 1,698 ms
136,612 KB
testcase_31 AC 1,680 ms
136,628 KB
testcase_32 AC 1,727 ms
136,832 KB
testcase_33 AC 1,669 ms
136,552 KB
testcase_34 AC 33 ms
52,480 KB
testcase_35 AC 33 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[]

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

    xy.append([x,y])
ans=0

dis=[]
for i in range(n-1):
    for j in range(i+1,n):
        dis.append([(xy[i][0]-xy[j][0])**2+(xy[i][1]-xy[j][1])**2,i,j])
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