結果

問題 No.1265 Balloon Survival
ユーザー taiga000629taiga000629
提出日時 2020-10-24 01:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,941 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 130,676 KB
最終ジャッジ日時 2024-07-21 14:37:54
合計ジャッジ時間 22,310 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 38 ms
52,600 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 201 ms
82,484 KB
testcase_15 AC 151 ms
80,640 KB
testcase_16 AC 75 ms
69,248 KB
testcase_17 AC 961 ms
105,064 KB
testcase_18 AC 102 ms
78,592 KB
testcase_19 AC 81 ms
70,656 KB
testcase_20 AC 194 ms
82,176 KB
testcase_21 AC 436 ms
90,240 KB
testcase_22 AC 259 ms
84,864 KB
testcase_23 AC 285 ms
85,504 KB
testcase_24 AC 1,941 ms
129,228 KB
testcase_25 AC 1,777 ms
130,324 KB
testcase_26 AC 1,693 ms
130,244 KB
testcase_27 AC 1,721 ms
130,152 KB
testcase_28 AC 1,676 ms
130,368 KB
testcase_29 AC 1,643 ms
130,120 KB
testcase_30 AC 1,713 ms
130,628 KB
testcase_31 AC 1,755 ms
130,408 KB
testcase_32 AC 1,669 ms
130,676 KB
testcase_33 AC 1,680 ms
130,620 KB
testcase_34 AC 35 ms
52,608 KB
testcase_35 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    X[i]=x
    Y[i]=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,yj=X[i],Y[i],X[j],Y[j]
        dis[cnt][0]=(xi-xj)**2+(yi-yj)**2
        dis[cnt][1]=i
        dis[cnt][2]=j
        cnt+=1
dis.sort()
erase=set()
for i in range(len(dis)):
    p,q=dis[i][1],dis[i][2]
    if p==0:
        if not q in erase:
            ans+=1
            erase.add(q)
    else:
        if not p in erase and not q in erase:
            erase.add(p)
            erase.add(q)

print(ans)

0