結果

問題 No.2923 Mayor's Job
ユーザー titiatitia
提出日時 2024-10-17 03:22:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 2,962 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 76,728 KB
最終ジャッジ日時 2024-10-17 03:22:33
合計ジャッジ時間 5,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,236 KB
testcase_01 AC 35 ms
52,404 KB
testcase_02 AC 35 ms
52,888 KB
testcase_03 AC 116 ms
73,956 KB
testcase_04 AC 154 ms
76,580 KB
testcase_05 AC 124 ms
76,544 KB
testcase_06 AC 122 ms
76,580 KB
testcase_07 AC 123 ms
76,588 KB
testcase_08 AC 120 ms
76,556 KB
testcase_09 AC 122 ms
76,508 KB
testcase_10 AC 121 ms
76,568 KB
testcase_11 AC 160 ms
76,728 KB
testcase_12 AC 161 ms
76,468 KB
testcase_13 AC 70 ms
67,360 KB
testcase_14 AC 51 ms
62,952 KB
testcase_15 AC 36 ms
52,400 KB
testcase_16 AC 36 ms
53,644 KB
testcase_17 AC 36 ms
53,440 KB
testcase_18 AC 36 ms
53,532 KB
testcase_19 AC 36 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
H=list(map(int,input().split()))
XY=[list(map(int,input().split())) for i in range(N)]

USE=[0]*N

for i in range(N):
    for j in range(N):
        x,y=XY[i]
        z,w=XY[j]

        if (x-z)**2 + (y-w)**2 <=K*K:
            if H[i]<H[j]:
                USE[i]=1
            if H[j]<H[i]:
                USE[j]=1

print(N-sum(USE))
0