結果

問題 No.2923 Mayor's Job
ユーザー H20H20
提出日時 2024-10-12 14:51:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-12 14:51:45
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 110 ms
76,928 KB
testcase_04 AC 75 ms
73,600 KB
testcase_05 AC 82 ms
74,624 KB
testcase_06 AC 94 ms
74,752 KB
testcase_07 AC 78 ms
74,368 KB
testcase_08 AC 79 ms
74,368 KB
testcase_09 AC 79 ms
74,368 KB
testcase_10 AC 78 ms
74,240 KB
testcase_11 AC 84 ms
74,112 KB
testcase_12 AC 83 ms
73,984 KB
testcase_13 AC 58 ms
62,464 KB
testcase_14 AC 43 ms
53,376 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
H = list(map(int,input().split()))
XY = [list(map(int, input().split())) for _ in range(N)]
HXY = []
for h,(x,y) in zip(H,XY):
    HXY.append([h,x,y])
HXY = sorted(HXY, key=lambda x: x[0])
ans = N
for i in range(N):
    th,tx,ty = HXY[i]
    for j in range(i+1,N):
        h,x,y = HXY[j]
        if th<h and (tx-x)**2+(ty-y)**2<=K**2:
            ans-=1
            break
print(ans)
0