結果

問題 No.1265 Balloon Survival
ユーザー yakeshibayakeshiba
提出日時 2020-11-17 15:23:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 138,964 KB
最終ジャッジ日時 2024-07-23 08:20:00
合計ジャッジ時間 12,413 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,556 KB
testcase_01 AC 36 ms
53,368 KB
testcase_02 AC 36 ms
52,824 KB
testcase_03 AC 36 ms
53,068 KB
testcase_04 AC 38 ms
53,364 KB
testcase_05 AC 36 ms
53,092 KB
testcase_06 AC 36 ms
53,080 KB
testcase_07 AC 35 ms
52,948 KB
testcase_08 AC 36 ms
52,432 KB
testcase_09 AC 35 ms
53,004 KB
testcase_10 AC 36 ms
52,896 KB
testcase_11 AC 35 ms
53,156 KB
testcase_12 AC 37 ms
54,136 KB
testcase_13 AC 37 ms
52,064 KB
testcase_14 AC 116 ms
74,824 KB
testcase_15 AC 91 ms
71,632 KB
testcase_16 AC 58 ms
64,580 KB
testcase_17 AC 466 ms
101,764 KB
testcase_18 AC 69 ms
67,904 KB
testcase_19 AC 60 ms
65,560 KB
testcase_20 AC 108 ms
75,732 KB
testcase_21 AC 233 ms
97,372 KB
testcase_22 AC 127 ms
77,988 KB
testcase_23 AC 141 ms
79,340 KB
testcase_24 AC 875 ms
133,684 KB
testcase_25 AC 890 ms
133,644 KB
testcase_26 AC 862 ms
133,552 KB
testcase_27 AC 859 ms
133,472 KB
testcase_28 AC 896 ms
133,540 KB
testcase_29 AC 996 ms
138,844 KB
testcase_30 AC 922 ms
138,964 KB
testcase_31 AC 882 ms
133,416 KB
testcase_32 AC 952 ms
138,160 KB
testcase_33 AC 865 ms
133,436 KB
testcase_34 AC 36 ms
54,128 KB
testcase_35 AC 36 ms
52,824 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(key=lambda x: x[0])
    
    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