結果

問題 No.1265 Balloon Survival
ユーザー _matumo__matumo_
提出日時 2020-11-05 20:07:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,801 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 87,228 KB
最終ジャッジ日時 2024-07-22 11:34:22
合計ジャッジ時間 11,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 32 ms
10,368 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 32 ms
10,496 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,496 KB
testcase_14 AC 165 ms
18,816 KB
testcase_15 AC 122 ms
16,384 KB
testcase_16 AC 59 ms
12,544 KB
testcase_17 AC 784 ms
50,576 KB
testcase_18 AC 76 ms
13,568 KB
testcase_19 AC 66 ms
12,672 KB
testcase_20 AC 176 ms
18,688 KB
testcase_21 AC 372 ms
29,460 KB
testcase_22 AC 225 ms
22,016 KB
testcase_23 AC 251 ms
22,912 KB
testcase_24 AC 1,661 ms
86,224 KB
testcase_25 AC 1,673 ms
86,744 KB
testcase_26 AC 1,616 ms
86,968 KB
testcase_27 AC 1,774 ms
87,156 KB
testcase_28 AC 1,783 ms
87,192 KB
testcase_29 AC 1,775 ms
87,100 KB
testcase_30 AC 1,782 ms
87,228 KB
testcase_31 AC 1,793 ms
86,996 KB
testcase_32 AC 1,801 ms
87,000 KB
testcase_33 AC 1,794 ms
87,124 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
pa=[tuple(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