結果

問題 No.2923 Mayor's Job
ユーザー miho-4miho-4
提出日時 2024-10-12 15:50:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 74,484 KB
最終ジャッジ日時 2024-10-12 15:50:24
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,076 KB
testcase_01 AC 36 ms
52,116 KB
testcase_02 AC 37 ms
52,760 KB
testcase_03 AC 120 ms
74,484 KB
testcase_04 AC 61 ms
72,332 KB
testcase_05 AC 70 ms
73,848 KB
testcase_06 AC 83 ms
74,128 KB
testcase_07 AC 70 ms
73,724 KB
testcase_08 AC 76 ms
72,868 KB
testcase_09 AC 74 ms
73,376 KB
testcase_10 AC 64 ms
73,804 KB
testcase_11 AC 63 ms
72,956 KB
testcase_12 AC 64 ms
73,844 KB
testcase_13 AC 50 ms
65,540 KB
testcase_14 AC 41 ms
60,776 KB
testcase_15 AC 34 ms
52,860 KB
testcase_16 AC 36 ms
53,344 KB
testcase_17 AC 34 ms
52,688 KB
testcase_18 AC 34 ms
53,068 KB
testcase_19 AC 34 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
H=list(map(int,input().split()))
L=[list(map(int,input().split())) for _ in range(n)]
ans=n
for i in range(n):
	for j in range(n):
		if H[i]<H[j]:
			x,y=L[i]
			x2,y2=L[j]
			if (x-x2)**2+(y-y2)**2<=k**2:
				ans-=1
				break
print(ans)
0