結果

問題 No.2923 Mayor's Job
ユーザー ymskskyymsksky
提出日時 2024-10-12 16:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,748 KB
最終ジャッジ日時 2024-10-12 16:35:07
合計ジャッジ時間 2,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 134 ms
74,368 KB
testcase_04 AC 135 ms
74,368 KB
testcase_05 AC 127 ms
73,472 KB
testcase_06 AC 131 ms
74,496 KB
testcase_07 AC 139 ms
74,368 KB
testcase_08 AC 133 ms
74,748 KB
testcase_09 AC 133 ms
74,624 KB
testcase_10 AC 135 ms
74,624 KB
testcase_11 AC 138 ms
74,496 KB
testcase_12 AC 139 ms
73,856 KB
testcase_13 AC 69 ms
64,768 KB
testcase_14 AC 54 ms
61,440 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
hl = list(map(int, input().split()))
xyl = [list(map(int, input().split())) for _ in range(n)]

k2 = k**2

exists = [True] * n
for i, h1 in enumerate(hl):
    x1, y1 = xyl[i]
    for j, h2 in enumerate(hl):
        if h1 <= h2:
            continue
        x2, y2 = xyl[j]
        d2 = (x1 - x2)**2 + (y1 - y2)**2
        if d2 <= k2:
            exists[j] = False
print(sum(exists))
0