結果

問題 No.2923 Mayor's Job
ユーザー ryuuichiryuuichi
提出日時 2024-10-12 16:42:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,563 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-10-12 16:42:53
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 1,563 ms
11,264 KB
testcase_04 AC 42 ms
11,136 KB
testcase_05 AC 215 ms
11,264 KB
testcase_06 AC 657 ms
11,392 KB
testcase_07 AC 106 ms
11,264 KB
testcase_08 AC 106 ms
11,264 KB
testcase_09 AC 295 ms
11,264 KB
testcase_10 AC 111 ms
11,392 KB
testcase_11 AC 42 ms
11,264 KB
testcase_12 AC 42 ms
11,136 KB
testcase_13 AC 34 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
H=list(map(int,input().split()))
h=[[H[i],i] for i in range(N)]
h=sorted(h)
xy=[list(map(int,input().split())) for _ in range(N)]
done=[0]*N

for i in range(N):
    for j in range(i+1,N):
        if (xy[h[i][1]][0]-xy[h[j][1]][0])**2 +(xy[h[i][1]][1]-xy[h[j][1]][1])**2 <=K**2 and done[j]==0 and done[i]==0 and h[i][0]!=h[j][0]:
            done[i]=1
            
            break
print(done.count(0))


        

0