結果

問題 No.1265 Balloon Survival
ユーザー _matumo__matumo_
提出日時 2020-11-05 09:09:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 354 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,060 KB
最終ジャッジ日時 2024-07-22 10:49:49
合計ジャッジ時間 25,122 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 164 ms
20,992 KB
testcase_15 AC 117 ms
17,920 KB
testcase_16 AC 57 ms
13,312 KB
testcase_17 AC 924 ms
58,872 KB
testcase_18 AC 76 ms
14,592 KB
testcase_19 AC 59 ms
13,568 KB
testcase_20 AC 152 ms
20,608 KB
testcase_21 AC 380 ms
33,528 KB
testcase_22 AC 214 ms
24,576 KB
testcase_23 AC 248 ms
26,112 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
pa=[[int(a) for a in input().split()] for i in range(N)]
pb=[]
for i,(xi,yi) in enumerate(pa[:-1]):
    for j in range(i+1,N):
        xj,yj=pa[j]
        r=(xi-xj)**2+(yi-yj)**2
        pb.append([r,i,j])
pb.sort()
pc=[0]*N
cn=0
for r,i,j in pb:
    if pc[i] or pc[j]: continue
    pc[j]=1
    if i>0: pc[i]=1
    else:   cn+=1
print(cn)
0