結果

問題 No.2923 Mayor's Job
ユーザー ryuusagiryuusagi
提出日時 2024-10-12 15:10:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 123,520 KB
最終ジャッジ日時 2024-10-12 15:10:51
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 128 ms
74,880 KB
testcase_04 AC 216 ms
123,520 KB
testcase_05 AC 124 ms
76,852 KB
testcase_06 AC 134 ms
76,800 KB
testcase_07 AC 134 ms
76,800 KB
testcase_08 AC 135 ms
76,672 KB
testcase_09 AC 129 ms
76,672 KB
testcase_10 AC 131 ms
76,928 KB
testcase_11 AC 214 ms
108,800 KB
testcase_12 AC 160 ms
86,656 KB
testcase_13 AC 76 ms
74,368 KB
testcase_14 AC 46 ms
62,848 KB
testcase_15 AC 33 ms
51,840 KB
testcase_16 AC 34 ms
51,712 KB
testcase_17 AC 35 ms
51,584 KB
testcase_18 AC 33 ms
52,096 KB
testcase_19 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
h = list(map(int, input().split()))
xy = [list(map(int, input().split())) for _ in range(n)]
g = [[] for _ in range(n)]
d = [0] * n
for i in range(n):
    for j in range(n):
        if h[i] < h[j] and (xy[i][0] - xy[j][0]) ** 2 + (xy[i][1] - xy[j][1]) ** 2 <= k * k:
            g[j].append(i)
            d[i] = 1
print(n - sum(d))
0