結果

問題 No.1265 Balloon Survival
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-23 22:21:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-07-21 10:59:23
合計ジャッジ時間 3,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,608 KB
testcase_06 WA -
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 51 ms
61,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [list(map(int, input().split())) for i in range(n)]
ans = n - 1
sx, sy = xy.pop(0)
xy.sort()
visited = [False] * (n - 1)
for i in range(n - 1):
    cur = (sx - xy[i][0]) ** 2 + (sy - xy[i][1]) ** 2
    for j in range(i, n - 1):
        if i != j:
            if (xy[i][0] - xy[j][0]) ** 2 + (xy[i][1] - xy[j][1]) ** 2 < cur and not visited[i] and not visited[j]:
                ans -= 2
                visited[i] = True
                visited[j] = True
                break
print(ans)
0