結果

問題 No.1265 Balloon Survival
ユーザー r_ishidar_ishida
提出日時 2020-12-30 07:19:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,603 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,544 KB
最終ジャッジ日時 2024-10-06 14:25:17
合計ジャッジ時間 19,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 41 ms
52,480 KB
testcase_14 AC 167 ms
73,728 KB
testcase_15 AC 129 ms
70,016 KB
testcase_16 AC 72 ms
63,744 KB
testcase_17 AC 702 ms
101,268 KB
testcase_18 AC 91 ms
65,536 KB
testcase_19 AC 78 ms
64,128 KB
testcase_20 AC 161 ms
73,600 KB
testcase_21 AC 382 ms
97,152 KB
testcase_22 AC 215 ms
76,544 KB
testcase_23 AC 224 ms
78,464 KB
testcase_24 AC 1,502 ms
132,508 KB
testcase_25 AC 1,550 ms
132,616 KB
testcase_26 AC 1,568 ms
133,528 KB
testcase_27 AC 1,563 ms
131,876 KB
testcase_28 AC 1,542 ms
132,508 KB
testcase_29 AC 1,603 ms
132,512 KB
testcase_30 AC 1,542 ms
133,368 KB
testcase_31 AC 1,560 ms
132,516 KB
testcase_32 AC 1,589 ms
132,728 KB
testcase_33 AC 1,489 ms
133,544 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 40 ms
51,712 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[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