結果

問題 No.1265 Balloon Survival
ユーザー lloyzlloyz
提出日時 2022-05-26 00:36:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 139,368 KB
最終ジャッジ日時 2024-09-20 14:53:15
合計ジャッジ時間 12,464 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 108 ms
73,728 KB
testcase_15 AC 92 ms
70,912 KB
testcase_16 AC 59 ms
63,872 KB
testcase_17 AC 413 ms
101,328 KB
testcase_18 AC 78 ms
66,816 KB
testcase_19 AC 65 ms
64,000 KB
testcase_20 AC 114 ms
73,600 KB
testcase_21 AC 231 ms
97,280 KB
testcase_22 AC 138 ms
77,440 KB
testcase_23 AC 144 ms
79,488 KB
testcase_24 AC 860 ms
137,456 KB
testcase_25 AC 871 ms
138,344 KB
testcase_26 AC 868 ms
139,368 KB
testcase_27 AC 886 ms
138,860 KB
testcase_28 AC 876 ms
138,984 KB
testcase_29 AC 925 ms
138,856 KB
testcase_30 AC 878 ms
138,860 KB
testcase_31 AC 894 ms
138,472 KB
testcase_32 AC 925 ms
138,476 KB
testcase_33 AC 919 ms
138,596 KB
testcase_34 AC 41 ms
52,480 KB
testcase_35 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
import sys

input = sys.stdin.readline

def main():
    n = int(input())
    P = [list(map(int, input().split())) for _ in range(n)]

    L = []
    for i in range(n):
        for j in range(i + 1, n):
            L.append(((P[i][0] - P[j][0])**2 + (P[i][1] - P[j][1])**2, i, j))

    L.sort(key=lambda x: x[0])
    seen = set()
    ans = 0
    for _, i, j in L:
        if i == 0:
            if j in seen:
                continue
            ans += 1
            seen.add(j)
        else:
            if i in seen or j in seen:
                continue
            seen.add(i)
            seen.add(j)
    print(ans)

if __name__ == '__main__':
    main()
0