結果

問題 No.1265 Balloon Survival
ユーザー r_ishidar_ishida
提出日時 2020-12-30 07:09:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 981 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 97,076 KB
最終ジャッジ日時 2024-10-06 14:12:32
合計ジャッジ時間 26,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 172 ms
20,224 KB
testcase_15 AC 123 ms
17,664 KB
testcase_16 AC 60 ms
13,312 KB
testcase_17 AC 968 ms
54,852 KB
testcase_18 AC 78 ms
14,592 KB
testcase_19 AC 67 ms
13,568 KB
testcase_20 AC 156 ms
19,968 KB
testcase_21 AC 469 ms
31,788 KB
testcase_22 AC 251 ms
23,552 KB
testcase_23 AC 257 ms
24,704 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 29 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import math
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

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

for i in range(n):
    a,b = MI()
    x.append(a)
    y.append(b)

for i in range(1, n):
    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[1] == 0:
        if deleted[i[2]] == 1:
            deleted[i[2]] = 0
            ans += 1
    elif 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