結果

問題 No.1265 Balloon Survival
ユーザー r_ishidar_ishida
提出日時 2020-12-30 07:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,815 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 134,104 KB
最終ジャッジ日時 2024-10-06 14:30:11
合計ジャッジ時間 22,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,020 KB
testcase_01 AC 40 ms
53,220 KB
testcase_02 AC 39 ms
52,344 KB
testcase_03 AC 38 ms
53,164 KB
testcase_04 AC 39 ms
52,880 KB
testcase_05 AC 40 ms
52,388 KB
testcase_06 AC 39 ms
52,152 KB
testcase_07 AC 38 ms
52,432 KB
testcase_08 AC 38 ms
52,504 KB
testcase_09 AC 39 ms
53,648 KB
testcase_10 AC 38 ms
52,336 KB
testcase_11 AC 38 ms
52,632 KB
testcase_12 AC 39 ms
52,332 KB
testcase_13 AC 38 ms
53,552 KB
testcase_14 AC 179 ms
74,732 KB
testcase_15 AC 138 ms
71,040 KB
testcase_16 AC 73 ms
63,488 KB
testcase_17 AC 788 ms
101,792 KB
testcase_18 AC 91 ms
65,152 KB
testcase_19 AC 78 ms
64,000 KB
testcase_20 AC 177 ms
74,112 KB
testcase_21 AC 422 ms
97,152 KB
testcase_22 AC 227 ms
77,440 KB
testcase_23 AC 256 ms
78,848 KB
testcase_24 AC 1,703 ms
133,572 KB
testcase_25 AC 1,705 ms
132,436 KB
testcase_26 AC 1,692 ms
133,848 KB
testcase_27 AC 1,755 ms
132,460 KB
testcase_28 AC 1,714 ms
132,708 KB
testcase_29 AC 1,815 ms
133,788 KB
testcase_30 AC 1,779 ms
134,104 KB
testcase_31 AC 1,728 ms
132,552 KB
testcase_32 AC 1,714 ms
133,396 KB
testcase_33 AC 1,743 ms
133,592 KB
testcase_34 AC 38 ms
52,224 KB
testcase_35 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())

n = I()
x = []
y = []
d = []

a,b = MI()
x.append(a)
y.append(b)

for i in range(1, n):
    a,b = MI()
    x.append(a)
    y.append(b)
    for j in range(i):
        tmp = (x[i]-x[j])**2 + (y[i]-y[j])**2
        d.append((tmp, i, j))

d.sort()

deleted = [1]*n
ans = 0

for i in d:
    if i[2] == 0:
        if deleted[i[1]] == 1:
            deleted[i[1]] = 0
            ans += 1
    else:
        if deleted[i[1]] == 1 and deleted[i[2]] == 1:
            deleted[i[1]] = 0
            deleted[i[2]] = 0

print(ans)
0