結果

問題 No.2923 Mayor's Job
ユーザー うにれうにれ
提出日時 2024-10-12 15:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-10-12 15:10:05
合計ジャッジ時間 2,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,408 KB
testcase_01 AC 37 ms
52,684 KB
testcase_02 AC 35 ms
53,080 KB
testcase_03 AC 136 ms
74,552 KB
testcase_04 AC 67 ms
71,932 KB
testcase_05 AC 95 ms
76,884 KB
testcase_06 AC 106 ms
76,868 KB
testcase_07 AC 83 ms
76,672 KB
testcase_08 AC 87 ms
76,668 KB
testcase_09 AC 94 ms
76,704 KB
testcase_10 AC 86 ms
76,712 KB
testcase_11 AC 92 ms
73,744 KB
testcase_12 AC 70 ms
73,900 KB
testcase_13 AC 48 ms
56,792 KB
testcase_14 AC 39 ms
53,828 KB
testcase_15 AC 37 ms
53,320 KB
testcase_16 AC 35 ms
52,952 KB
testcase_17 AC 35 ms
52,860 KB
testcase_18 AC 35 ms
53,192 KB
testcase_19 AC 35 ms
53,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
mod = 998244353
mod2 = 10**9+7

N, K = map(int, input().split())
K = K**2
H = list(map(int, input().split()))
shrines = []
for i in range(N):
    x, y = map(int, input().split())
    shrines.append((H[i], x, y))
shrines.sort()
ans = N
for i in range(N-1):
    for j in range(i+1, N):
        if shrines[i][0] == shrines[j][0]:continue
        dx, dy = shrines[i][1] - shrines[j][1], shrines[i][2] - shrines[j][2]
        dx, dy = abs(dx), abs(dy)
        if dx**2+dy**2 <= K:
            ans -= 1
            break
print(ans)
0