結果

問題 No.2923 Mayor's Job
ユーザー kmmtkmkmmtkm
提出日時 2024-10-12 15:01:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 74,816 KB
最終ジャッジ日時 2024-10-12 15:01:35
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,600 KB
testcase_01 AC 37 ms
53,812 KB
testcase_02 AC 35 ms
53,160 KB
testcase_03 AC 88 ms
74,816 KB
testcase_04 AC 70 ms
73,872 KB
testcase_05 AC 75 ms
74,168 KB
testcase_06 AC 76 ms
74,800 KB
testcase_07 AC 70 ms
74,128 KB
testcase_08 AC 68 ms
73,988 KB
testcase_09 AC 75 ms
74,712 KB
testcase_10 AC 72 ms
73,972 KB
testcase_11 AC 70 ms
73,636 KB
testcase_12 AC 71 ms
73,580 KB
testcase_13 AC 52 ms
63,084 KB
testcase_14 AC 39 ms
55,560 KB
testcase_15 AC 37 ms
53,848 KB
testcase_16 AC 36 ms
53,444 KB
testcase_17 AC 37 ms
53,668 KB
testcase_18 AC 36 ms
53,128 KB
testcase_19 AC 37 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def debug(*args):
    print(*args, file=sys.stderr)


n, k = map(int, input().split())
h = list(map(int, input().split()))

xy = [list(map(int, input().split())) for _ in range(n)]
hxy = [[h[i], xy[i][0], xy[i][1]] for i in range(n)]
hxy.sort()

ans = n

for i in range(n-1):
    hi, xi, yi = hxy[i]
    for j in range(i+1, n):
        hj, xj, yj = hxy[j]
        if hi == hj:
            continue
        if (xi-xj)**2 + (yi-yj)**2 <= k**2:
            ans -= 1
            break

print(ans)
0