結果

問題 No.2923 Mayor's Job
ユーザー hato336hato336
提出日時 2024-10-12 15:05:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 90,608 KB
最終ジャッジ日時 2024-10-12 15:05:51
合計ジャッジ時間 4,319 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
85,504 KB
testcase_01 AC 127 ms
85,516 KB
testcase_02 AC 137 ms
85,632 KB
testcase_03 AC 187 ms
90,356 KB
testcase_04 AC 186 ms
90,304 KB
testcase_05 AC 200 ms
90,140 KB
testcase_06 AC 189 ms
90,608 KB
testcase_07 AC 191 ms
90,184 KB
testcase_08 AC 191 ms
90,496 KB
testcase_09 AC 187 ms
90,368 KB
testcase_10 AC 189 ms
90,376 KB
testcase_11 AC 214 ms
90,340 KB
testcase_12 AC 204 ms
90,248 KB
testcase_13 AC 153 ms
89,796 KB
testcase_14 AC 142 ms
89,600 KB
testcase_15 AC 128 ms
85,652 KB
testcase_16 AC 124 ms
85,632 KB
testcase_17 AC 126 ms
85,632 KB
testcase_18 AC 147 ms
85,632 KB
testcase_19 AC 122 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n,k = map(int,input().split())
h = list(map(int,input().split()))
#alist = []
a = []
for i in range(n):
    x,y = map(int,input().split())
    a.append([h[i],x,y])
a.sort()
ans = [1 for i in range(n)]
cnt = 0
for z,x,y in a:
    for j in range(cnt):
        if a[j][0] < z and (x-a[j][1])**2 + (y-a[j][2])**2 <= k**2:
            ans[j] = 0
    cnt += 1
print(sum(ans))
0