結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 01:14:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 953 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 153,164 KB
最終ジャッジ日時 2024-07-21 14:42:06
合計ジャッジ時間 11,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,404 KB
testcase_01 AC 34 ms
52,612 KB
testcase_02 AC 33 ms
53,808 KB
testcase_03 AC 33 ms
54,376 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 34 ms
52,476 KB
testcase_06 AC 34 ms
53,260 KB
testcase_07 AC 33 ms
53,164 KB
testcase_08 AC 34 ms
53,136 KB
testcase_09 AC 34 ms
52,284 KB
testcase_10 AC 34 ms
53,100 KB
testcase_11 AC 35 ms
53,800 KB
testcase_12 AC 35 ms
53,296 KB
testcase_13 AC 35 ms
52,996 KB
testcase_14 AC 107 ms
78,952 KB
testcase_15 AC 86 ms
74,564 KB
testcase_16 AC 55 ms
65,940 KB
testcase_17 AC 450 ms
123,392 KB
testcase_18 AC 66 ms
70,260 KB
testcase_19 AC 60 ms
66,236 KB
testcase_20 AC 107 ms
77,820 KB
testcase_21 AC 212 ms
96,092 KB
testcase_22 AC 142 ms
89,148 KB
testcase_23 AC 167 ms
93,748 KB
testcase_24 AC 868 ms
152,776 KB
testcase_25 AC 862 ms
152,800 KB
testcase_26 AC 859 ms
152,844 KB
testcase_27 AC 873 ms
152,808 KB
testcase_28 AC 867 ms
153,164 KB
testcase_29 AC 915 ms
152,852 KB
testcase_30 AC 953 ms
153,080 KB
testcase_31 AC 860 ms
152,844 KB
testcase_32 AC 911 ms
152,720 KB
testcase_33 AC 851 ms
152,956 KB
testcase_34 AC 36 ms
54,304 KB
testcase_35 AC 34 ms
52,272 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=sorted(dis,key=lambda x: x[0])
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