結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 00:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,851 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 136,924 KB
最終ジャッジ日時 2024-07-21 14:19:35
合計ジャッジ時間 22,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
52,388 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 34 ms
52,352 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
52,504 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 195 ms
84,844 KB
testcase_15 AC 148 ms
82,344 KB
testcase_16 AC 75 ms
70,784 KB
testcase_17 AC 879 ms
110,012 KB
testcase_18 AC 102 ms
78,720 KB
testcase_19 AC 81 ms
72,320 KB
testcase_20 AC 183 ms
84,724 KB
testcase_21 AC 390 ms
95,744 KB
testcase_22 AC 241 ms
88,032 KB
testcase_23 AC 267 ms
89,600 KB
testcase_24 AC 1,830 ms
136,292 KB
testcase_25 AC 1,795 ms
136,300 KB
testcase_26 AC 1,809 ms
136,452 KB
testcase_27 AC 1,851 ms
136,592 KB
testcase_28 AC 1,795 ms
136,468 KB
testcase_29 AC 1,836 ms
136,616 KB
testcase_30 AC 1,794 ms
136,604 KB
testcase_31 AC 1,750 ms
136,184 KB
testcase_32 AC 1,759 ms
136,924 KB
testcase_33 AC 1,742 ms
136,524 KB
testcase_34 AC 36 ms
52,480 KB
testcase_35 AC 34 ms
51,584 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