結果

問題 No.2923 Mayor's Job
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 15:06:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 77,136 KB
最終ジャッジ日時 2024-10-12 15:06:23
合計ジャッジ時間 2,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 38 ms
52,360 KB
testcase_02 AC 38 ms
52,696 KB
testcase_03 AC 120 ms
73,420 KB
testcase_04 AC 149 ms
76,780 KB
testcase_05 AC 124 ms
74,848 KB
testcase_06 AC 125 ms
74,812 KB
testcase_07 AC 131 ms
74,924 KB
testcase_08 AC 130 ms
74,736 KB
testcase_09 AC 125 ms
74,912 KB
testcase_10 AC 134 ms
74,824 KB
testcase_11 AC 161 ms
77,136 KB
testcase_12 AC 159 ms
76,572 KB
testcase_13 AC 72 ms
67,692 KB
testcase_14 AC 52 ms
63,300 KB
testcase_15 AC 38 ms
52,692 KB
testcase_16 AC 39 ms
53,488 KB
testcase_17 AC 38 ms
52,700 KB
testcase_18 AC 39 ms
53,848 KB
testcase_19 AC 38 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
h=list(map(int,input().split()))
p=[tuple(map(int,input().split())) for i in range(n)]
d=[0]*n
for i in range(n):
  for j in range(n):
    if i==j:
      continue
    x1,y1=p[i]
    x2,y2=p[j]
    if (x1-x2)**2+(y1-y2)**2<=K**2:
      if h[i]<h[j]:
        d[i]=1
      if h[j]<h[i]:
        d[j]=1
print(d.count(0))
0