結果

問題 No.1265 Balloon Survival
ユーザー yakeshibayakeshiba
提出日時 2020-11-17 15:18:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,846 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 137,436 KB
最終ジャッジ日時 2024-07-23 08:18:43
合計ジャッジ時間 22,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,220 KB
testcase_01 AC 39 ms
52,660 KB
testcase_02 AC 36 ms
52,812 KB
testcase_03 AC 37 ms
53,292 KB
testcase_04 AC 36 ms
52,884 KB
testcase_05 AC 38 ms
52,692 KB
testcase_06 AC 37 ms
54,336 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 37 ms
52,812 KB
testcase_09 AC 37 ms
52,644 KB
testcase_10 AC 40 ms
52,460 KB
testcase_11 AC 37 ms
52,392 KB
testcase_12 AC 40 ms
52,812 KB
testcase_13 AC 36 ms
52,260 KB
testcase_14 AC 173 ms
75,868 KB
testcase_15 AC 137 ms
71,712 KB
testcase_16 AC 73 ms
64,896 KB
testcase_17 AC 923 ms
110,868 KB
testcase_18 AC 95 ms
67,364 KB
testcase_19 AC 75 ms
64,280 KB
testcase_20 AC 173 ms
75,816 KB
testcase_21 AC 399 ms
90,036 KB
testcase_22 AC 253 ms
89,524 KB
testcase_23 AC 282 ms
89,944 KB
testcase_24 AC 1,780 ms
136,360 KB
testcase_25 AC 1,774 ms
136,984 KB
testcase_26 AC 1,774 ms
137,128 KB
testcase_27 AC 1,804 ms
137,436 KB
testcase_28 AC 1,838 ms
137,196 KB
testcase_29 AC 1,846 ms
137,144 KB
testcase_30 AC 1,798 ms
137,200 KB
testcase_31 AC 1,764 ms
137,324 KB
testcase_32 AC 1,832 ms
137,268 KB
testcase_33 AC 1,755 ms
136,988 KB
testcase_34 AC 37 ms
54,676 KB
testcase_35 AC 36 ms
52,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

input=sys.stdin.readline


def main(args):
    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)
    
if __name__ == '__main__':
    main(sys.argv[1:])
0