結果

問題 No.1265 Balloon Survival
ユーザー tanon710tanon710
提出日時 2020-10-24 00:00:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 153,684 KB
最終ジャッジ日時 2024-07-21 14:00:50
合計ジャッジ時間 16,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 147 ms
77,440 KB
testcase_15 AC 114 ms
73,472 KB
testcase_16 AC 68 ms
65,920 KB
testcase_17 AC 610 ms
124,572 KB
testcase_18 AC 81 ms
69,376 KB
testcase_19 AC 71 ms
66,560 KB
testcase_20 AC 136 ms
77,440 KB
testcase_21 AC 272 ms
94,720 KB
testcase_22 AC 200 ms
90,752 KB
testcase_23 AC 215 ms
93,824 KB
testcase_24 AC 1,208 ms
153,528 KB
testcase_25 AC 1,196 ms
153,436 KB
testcase_26 AC 1,257 ms
153,420 KB
testcase_27 AC 1,248 ms
153,488 KB
testcase_28 AC 1,254 ms
153,684 KB
testcase_29 AC 1,274 ms
153,172 KB
testcase_30 AC 1,268 ms
153,400 KB
testcase_31 AC 1,215 ms
153,308 KB
testcase_32 AC 1,246 ms
153,436 KB
testcase_33 AC 1,211 ms
153,172 KB
testcase_34 AC 39 ms
52,864 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
pos=[list(map(int,input().split())) for _ in range(n)]
dist=[]
for i in range(n):
    x1,y1=pos[i]
    for j in range(i+1,n):
        x2,y2=pos[j]
        d=((x1-x2)**2+(y1-y2)**2)**0.5
        dist.append((d,i,j))
dist=sorted(dist,key=lambda x:x[0])
used=set()
ans=0
for _,i,j in dist:
    if i==0:
        if j in used:
            continue
        else:
            ans+=1
            used.add(j)
    else:
        if i in used or j in used:
            continue
        else:
            used.add(i)
            used.add(j)
print(ans)
0