結果

問題 No.2923 Mayor's Job
ユーザー うにれうにれ
提出日時 2024-10-12 15:08:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-10-12 15:08:37
合計ジャッジ時間 2,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 152 ms
74,752 KB
testcase_04 AC 70 ms
70,912 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 98 ms
76,996 KB
testcase_11 AC 75 ms
72,448 KB
testcase_12 AC 76 ms
73,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N, K = map(int, input().split())
K = K**2
H = list(map(int, input().split()))
H.sort()
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 H[i] == H[j]: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