結果

問題 No.1265 Balloon Survival
ユーザー r_ishidar_ishida
提出日時 2020-12-30 07:14:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,795 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,604 KB
最終ジャッジ日時 2024-10-06 14:18:11
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 192 ms
84,480 KB
testcase_15 AC 146 ms
81,792 KB
testcase_16 AC 79 ms
70,016 KB
testcase_17 AC 786 ms
109,024 KB
testcase_18 AC 105 ms
78,976 KB
testcase_19 AC 85 ms
71,680 KB
testcase_20 AC 185 ms
84,736 KB
testcase_21 AC 382 ms
95,872 KB
testcase_22 AC 237 ms
87,936 KB
testcase_23 AC 260 ms
89,088 KB
testcase_24 AC 1,638 ms
134,956 KB
testcase_25 AC 1,646 ms
134,576 KB
testcase_26 AC 1,741 ms
135,604 KB
testcase_27 AC 1,624 ms
133,676 KB
testcase_28 AC 1,643 ms
134,832 KB
testcase_29 AC 1,771 ms
134,832 KB
testcase_30 AC 1,697 ms
135,596 KB
testcase_31 AC 1,694 ms
134,192 KB
testcase_32 AC 1,795 ms
134,832 KB
testcase_33 AC 1,696 ms
135,340 KB
testcase_34 AC 39 ms
52,864 KB
testcase_35 AC 44 ms
52,480 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