結果

問題 No.1265 Balloon Survival
ユーザー FromBooskaFromBooska
提出日時 2023-03-10 23:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,533 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 133,044 KB
最終ジャッジ日時 2024-09-18 05:16:12
合計ジャッジ時間 18,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,328 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 35 ms
52,352 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 35 ms
51,456 KB
testcase_12 AC 33 ms
52,352 KB
testcase_13 AC 33 ms
51,968 KB
testcase_14 AC 163 ms
74,752 KB
testcase_15 AC 125 ms
70,656 KB
testcase_16 AC 69 ms
64,092 KB
testcase_17 AC 692 ms
100,864 KB
testcase_18 AC 86 ms
66,432 KB
testcase_19 AC 72 ms
64,512 KB
testcase_20 AC 191 ms
74,496 KB
testcase_21 AC 337 ms
94,860 KB
testcase_22 AC 189 ms
77,824 KB
testcase_23 AC 209 ms
79,488 KB
testcase_24 AC 1,451 ms
131,344 KB
testcase_25 AC 1,502 ms
131,812 KB
testcase_26 AC 1,477 ms
132,952 KB
testcase_27 AC 1,450 ms
131,776 KB
testcase_28 AC 1,453 ms
132,672 KB
testcase_29 AC 1,452 ms
133,044 KB
testcase_30 AC 1,425 ms
132,796 KB
testcase_31 AC 1,462 ms
131,516 KB
testcase_32 AC 1,533 ms
131,692 KB
testcase_33 AC 1,434 ms
131,548 KB
testcase_34 AC 35 ms
52,224 KB
testcase_35 AC 33 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全点対の距離、昇順で並べる
# popしてなければ両方pop
# 1とpopしていないbaloonであれば取り除く=pop

N = int(input())
XY = []
for i in range(N):
    x, y = map(int, input().split())
    XY.append([x, y])
    
d_list = []
for i in range(N):
    for j in range(i+1, N):
        d = (XY[i][0]-XY[j][0])**2 + (XY[i][1]-XY[j][1])**2
        d_list.append((d, i, j))
d_list.sort()
        
pop = [0]*N
ans = 0
for d, i, j in d_list:
    if i == 0:
        if pop[j] == 0:
            pop[j] = 1
            ans += 1
    else:
        if pop[i] == 0 and pop[j] == 0:
            pop[i] = 1
            pop[j] = 1

print(ans)
0