結果

問題 No.1265 Balloon Survival
ユーザー yakeshibayakeshiba
提出日時 2020-11-17 15:21:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,709 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 133,772 KB
最終ジャッジ日時 2024-07-23 08:19:41
合計ジャッジ時間 20,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,032 KB
testcase_01 AC 36 ms
52,276 KB
testcase_02 AC 36 ms
53,960 KB
testcase_03 AC 36 ms
52,464 KB
testcase_04 AC 36 ms
53,008 KB
testcase_05 AC 36 ms
53,172 KB
testcase_06 AC 36 ms
52,532 KB
testcase_07 AC 36 ms
52,340 KB
testcase_08 AC 37 ms
52,432 KB
testcase_09 AC 36 ms
53,212 KB
testcase_10 AC 35 ms
52,600 KB
testcase_11 AC 36 ms
52,812 KB
testcase_12 AC 37 ms
52,740 KB
testcase_13 AC 37 ms
52,248 KB
testcase_14 AC 163 ms
74,020 KB
testcase_15 AC 129 ms
69,736 KB
testcase_16 AC 71 ms
63,204 KB
testcase_17 AC 731 ms
101,516 KB
testcase_18 AC 90 ms
67,180 KB
testcase_19 AC 74 ms
63,544 KB
testcase_20 AC 164 ms
72,200 KB
testcase_21 AC 376 ms
96,580 KB
testcase_22 AC 204 ms
75,732 KB
testcase_23 AC 225 ms
77,288 KB
testcase_24 AC 1,568 ms
133,772 KB
testcase_25 AC 1,616 ms
133,352 KB
testcase_26 AC 1,601 ms
133,648 KB
testcase_27 AC 1,598 ms
133,416 KB
testcase_28 AC 1,611 ms
133,344 KB
testcase_29 AC 1,673 ms
133,360 KB
testcase_30 AC 1,611 ms
133,416 KB
testcase_31 AC 1,627 ms
133,472 KB
testcase_32 AC 1,709 ms
133,412 KB
testcase_33 AC 1,620 ms
133,560 KB
testcase_34 AC 37 ms
52,756 KB
testcase_35 AC 36 ms
52,864 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 i in range(n):
        for j in range(i+1,n):
            x1, y1 = balloons[i]
            x2, y2 = balloons[j]
            d = (x2-x1)**2+(y2-y1)**2
            dist.append((d, i, j))
        
    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