結果

問題 No.2923 Mayor's Job
ユーザー CecilCecil
提出日時 2024-10-13 22:07:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-10-13 22:07:31
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,764 KB
testcase_01 AC 36 ms
53,608 KB
testcase_02 AC 36 ms
52,888 KB
testcase_03 AC 219 ms
77,408 KB
testcase_04 AC 96 ms
73,084 KB
testcase_05 AC 115 ms
77,340 KB
testcase_06 AC 178 ms
77,516 KB
testcase_07 AC 106 ms
77,016 KB
testcase_08 AC 105 ms
77,056 KB
testcase_09 AC 122 ms
76,672 KB
testcase_10 AC 103 ms
76,928 KB
testcase_11 AC 95 ms
75,392 KB
testcase_12 AC 86 ms
75,392 KB
testcase_13 AC 55 ms
65,280 KB
testcase_14 AC 45 ms
61,312 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 36 ms
52,224 KB
testcase_17 AC 35 ms
52,096 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dist(x1,y1,x2,y2):
    return ((x1-x2)**2+(y1-y2)**2)**(1/2)

N,K = map(int, input().split())
H = list(map(int, input().split()))
S = list()
for i in range(N):
    x,y = map(int, input().split())
    S.append((H[i],x,y))
S.sort()
#print(S)
done = [False for _ in range(N)]
for i in range(N):
    for j in range(N-1, -1, -1):
        if j<=i:
            continue
        if not done[i] and not done[j]:
            hi,xi,yi = S[i]
            hj,xj,yj = S[j]
            if hi==hj:
                continue
            k = dist(xi,yi,xj,yj)
            if k<=K:
                done[i] = True
    #print(done)
#print(done)
print(N-sum(done))
0