結果

問題 No.2923 Mayor's Job
ユーザー ちーぴんちーぴん
提出日時 2024-10-13 22:38:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-13 22:38:45
合計ジャッジ時間 3,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 198 ms
76,800 KB
testcase_04 AC 175 ms
76,544 KB
testcase_05 AC 199 ms
76,800 KB
testcase_06 AC 200 ms
76,928 KB
testcase_07 AC 199 ms
76,800 KB
testcase_08 AC 219 ms
76,800 KB
testcase_09 AC 199 ms
76,928 KB
testcase_10 AC 199 ms
77,056 KB
testcase_11 AC 216 ms
76,928 KB
testcase_12 AC 203 ms
76,800 KB
testcase_13 AC 86 ms
70,016 KB
testcase_14 AC 57 ms
62,464 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 42 ms
52,480 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 39 ms
52,352 KB
testcase_19 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(N):
    for j in range(i+1, N):
        x1, y1 = XY[i]
        x2, y2 = XY[j]
        dist = ((x1 - x2) ** 2 + (y1 - y2) ** 2) ** 0.5
        if dist <= K:
            if H[i] > H[j]:
                live[j] = False
            elif H[i] < H[j]:
                live[i] = False
print(sum(live))
0