結果

問題 No.1265 Balloon Survival
ユーザー paruf4paruf4
提出日時 2020-10-23 23:16:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 69,428 KB
最終ジャッジ日時 2024-07-21 13:08:46
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
52,096 KB
testcase_10 WA -
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 WA -
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 WA -
testcase_35 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xy = [tuple(map(int,input().split())) for _ in range(n)]

if n == 2:
    print(1)
    exit(0)

b = [1]*n
b[0] = 0
min_dist = 10**18
for i in range(n):
    xi,yi = xy[i]
    if i == 0: 
        for j in range(n):
            if i == j: continue
            xj,yj = xy[j]
            min_dist = min(min_dist,(xi-xj)**2+(yi-yj)**2)
    else:
        for j in range(n):
            if i == j: continue
            xj,yj = xy[j]
            tmp_dist = (xi-xj)**2+(yi-yj)**2
            if tmp_dist <= min_dist:
                b[i] = 0
                b[j] = 0

print(sum(b))
0