結果

問題 No.2923 Mayor's Job
ユーザー tkykwtnbtkykwtnb
提出日時 2024-10-12 16:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-12 16:12:43
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 97 ms
74,880 KB
testcase_04 AC 83 ms
74,112 KB
testcase_05 AC 98 ms
74,988 KB
testcase_06 AC 99 ms
74,880 KB
testcase_07 AC 101 ms
75,276 KB
testcase_08 AC 122 ms
75,520 KB
testcase_09 AC 118 ms
75,244 KB
testcase_10 AC 100 ms
77,056 KB
testcase_11 AC 101 ms
76,800 KB
testcase_12 AC 96 ms
74,880 KB
testcase_13 AC 54 ms
64,128 KB
testcase_14 AC 44 ms
61,056 KB
testcase_15 AC 35 ms
52,608 KB
testcase_16 AC 34 ms
52,096 KB
testcase_17 AC 34 ms
52,864 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N,K=map(int,input().split())
H=list(map(int,input().split()))
XY=[]
for _ in range(N):
    x,y=map(int,input().split())
    XY.append((x,y))
S=[]
for i in range(N):
    S.append((H[i],XY[i]))
S.sort()
ans=N
for i in range(N-1):
    hi,(xi,yi)=S[i]
    destroy=0
    for j in range(i+1,N):
        hj,(xj,yj)=S[j]
        if hi<hj and math.sqrt((xi-xj)**2+(yi-yj)**2)<=K:
            destroy=1
    ans-=destroy
print(ans)
0