結果

問題 No.2923 Mayor's Job
ユーザー ルクルク
提出日時 2024-10-12 14:54:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,188 KB
最終ジャッジ日時 2024-10-12 14:54:24
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 38 ms
52,560 KB
testcase_02 AC 38 ms
54,032 KB
testcase_03 AC 130 ms
74,900 KB
testcase_04 AC 142 ms
76,700 KB
testcase_05 AC 134 ms
76,740 KB
testcase_06 AC 134 ms
76,552 KB
testcase_07 AC 143 ms
76,872 KB
testcase_08 AC 136 ms
76,828 KB
testcase_09 AC 132 ms
77,188 KB
testcase_10 AC 130 ms
76,524 KB
testcase_11 AC 164 ms
76,544 KB
testcase_12 AC 135 ms
76,448 KB
testcase_13 AC 68 ms
66,564 KB
testcase_14 AC 50 ms
63,968 KB
testcase_15 AC 37 ms
52,420 KB
testcase_16 AC 38 ms
52,560 KB
testcase_17 AC 37 ms
52,880 KB
testcase_18 AC 37 ms
52,404 KB
testcase_19 AC 37 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
h=list(map(int,input().split()))
g=[list(map(int,input().split())) for _ in range(n)]
delete=[False]*n
for i in range(n):
  for j in range(n):
    if i==j:
      continue
    if h[i]<h[j] and (g[i][0]-g[j][0])**2+(g[i][1]-g[j][1])**2<=m*m:
      delete[i]=True
print(delete.count(False))
0