結果

問題 No.2923 Mayor's Job
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 15:02:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 74,872 KB
最終ジャッジ日時 2024-10-12 15:02:23
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 100 ms
73,856 KB
testcase_04 AC 81 ms
72,832 KB
testcase_05 AC 90 ms
74,752 KB
testcase_06 AC 110 ms
74,788 KB
testcase_07 AC 87 ms
74,872 KB
testcase_08 AC 104 ms
74,368 KB
testcase_09 AC 105 ms
74,808 KB
testcase_10 AC 104 ms
74,496 KB
testcase_11 AC 82 ms
74,496 KB
testcase_12 AC 95 ms
73,728 KB
testcase_13 AC 60 ms
65,152 KB
testcase_14 AC 47 ms
60,284 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

order = list(range(N))
order.sort(key=lambda i: H[i])

deleted = [0] * N
for i in range(1,N):
    oi = order[i]
    x,y = XY[oi]
    for j in range(i):
        oj = order[j]
        if deleted[oj]: continue
        if H[oi] == H[oj]: continue
        x2,y2 = XY[oj]
        if (x-x2)**2 + (y-y2)**2 <= K**2:
            deleted[oj] = 1

print(N - sum(deleted))
0