結果

問題 No.1265 Balloon Survival
ユーザー yakeshibayakeshiba
提出日時 2020-11-17 15:15:36
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 620 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 145,376 KB
最終ジャッジ日時 2024-07-23 08:18:16
合計ジャッジ時間 24,224 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,728 KB
testcase_01 AC 39 ms
53,460 KB
testcase_02 AC 39 ms
52,532 KB
testcase_03 AC 38 ms
52,500 KB
testcase_04 AC 40 ms
52,764 KB
testcase_05 AC 39 ms
53,056 KB
testcase_06 AC 40 ms
52,948 KB
testcase_07 AC 40 ms
52,316 KB
testcase_08 AC 39 ms
53,488 KB
testcase_09 AC 38 ms
52,496 KB
testcase_10 AC 40 ms
52,868 KB
testcase_11 AC 40 ms
53,524 KB
testcase_12 AC 39 ms
52,720 KB
testcase_13 AC 40 ms
52,588 KB
testcase_14 AC 186 ms
77,164 KB
testcase_15 AC 145 ms
73,852 KB
testcase_16 AC 76 ms
65,936 KB
testcase_17 AC 899 ms
110,696 KB
testcase_18 AC 95 ms
68,716 KB
testcase_19 AC 83 ms
65,856 KB
testcase_20 AC 187 ms
77,680 KB
testcase_21 AC 401 ms
88,884 KB
testcase_22 AC 262 ms
88,756 KB
testcase_23 AC 292 ms
88,772 KB
testcase_24 AC 1,934 ms
144,792 KB
testcase_25 AC 1,932 ms
144,624 KB
testcase_26 AC 1,973 ms
144,904 KB
testcase_27 AC 1,989 ms
144,988 KB
testcase_28 AC 1,956 ms
144,772 KB
testcase_29 AC 1,963 ms
144,796 KB
testcase_30 AC 1,931 ms
144,784 KB
testcase_31 TLE -
testcase_32 AC 1,980 ms
145,308 KB
testcase_33 AC 1,974 ms
144,976 KB
testcase_34 AC 40 ms
54,744 KB
testcase_35 AC 39 ms
53,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())

balloons = []
for _ in range(n):
    x, y = map(int,input().split())
    balloons.append((x, y))

dist = []
for a, b in itertools.combinations([i for i in range(n)], 2):
    x1, y1 = balloons[a]
    x2, y2 = balloons[b]
    d = (x2-x1)**2+(y2-y1)**2
    dist.append((d, a, b))
    
dist.sort()

removed = [0]*n
ans = 0
for d in dist:
    a = d[1]
    b = d[2]
    if a == 0:
        if removed[b] == 0:
            ans += 1
            removed[b] = 1
    else:
        if removed[a] == 0 and removed[b] == 0:
            removed[a] = 1
            removed[b] = 1

print(ans)

        
0