結果

問題 No.2923 Mayor's Job
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-09-30 13:04:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 77,344 KB
最終ジャッジ日時 2024-09-30 13:04:31
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,744 KB
testcase_01 AC 33 ms
52,384 KB
testcase_02 AC 35 ms
53,028 KB
testcase_03 AC 120 ms
74,772 KB
testcase_04 AC 124 ms
75,132 KB
testcase_05 AC 123 ms
75,656 KB
testcase_06 AC 123 ms
75,432 KB
testcase_07 AC 118 ms
74,164 KB
testcase_08 AC 126 ms
76,776 KB
testcase_09 AC 123 ms
76,776 KB
testcase_10 AC 123 ms
76,784 KB
testcase_11 AC 123 ms
75,460 KB
testcase_12 AC 125 ms
77,344 KB
testcase_13 AC 61 ms
66,432 KB
testcase_14 AC 50 ms
63,276 KB
testcase_15 AC 34 ms
52,872 KB
testcase_16 AC 33 ms
52,992 KB
testcase_17 AC 33 ms
52,684 KB
testcase_18 AC 33 ms
53,184 KB
testcase_19 AC 34 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
H=list(map(int,input().split()))
pos=[tuple(map(int,input().split())) for i in range(N)]
ok=[1]*N
for i in range(N):
	for j in range(N):
		if H[i]<H[j] and ((pos[i][0]-pos[j][0])**2)+((pos[i][1]-pos[j][1])**2)<=K**2:
			ok[i]=0
print(sum(ok))
0