結果

問題 No.2923 Mayor's Job
ユーザー Meso MesoMeso Meso
提出日時 2024-10-14 19:37:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-14 19:37:42
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 306 ms
76,672 KB
testcase_04 AC 78 ms
72,576 KB
testcase_05 AC 125 ms
77,440 KB
testcase_06 AC 210 ms
76,800 KB
testcase_07 AC 107 ms
77,056 KB
testcase_08 AC 105 ms
76,672 KB
testcase_09 AC 154 ms
77,056 KB
testcase_10 AC 103 ms
77,184 KB
testcase_11 AC 80 ms
73,856 KB
testcase_12 AC 81 ms
74,496 KB
testcase_13 AC 61 ms
65,152 KB
testcase_14 AC 51 ms
61,568 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
h = list(map(int, input().split()))

d = [0] * n
for i in range(n):
    x, y = map(int, input().split())
    d[i] = [x, y]

ans = n

for i in range(n):
    for j in range(n):
        x1, y1 = d[i]
        x2, y2 = d[j]
        t = ((x1 - x2) ** 2 + (y1 - y2) ** 2 ) ** 0.5
        if t <= k and h[i] < h[j]:
            ans -= 1
            break

print(ans)  
0