結果

問題 No.2923 Mayor's Job
ユーザー anago-pieanago-pie
提出日時 2024-10-26 04:52:21
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-10-26 04:52:26
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,168 KB
testcase_01 AC 62 ms
39,168 KB
testcase_02 AC 63 ms
39,168 KB
testcase_03 AC 167 ms
44,488 KB
testcase_04 AC 175 ms
43,904 KB
testcase_05 AC 176 ms
44,928 KB
testcase_06 AC 168 ms
44,928 KB
testcase_07 AC 172 ms
44,672 KB
testcase_08 AC 174 ms
44,928 KB
testcase_09 AC 169 ms
44,800 KB
testcase_10 AC 170 ms
44,928 KB
testcase_11 AC 173 ms
44,800 KB
testcase_12 AC 170 ms
44,800 KB
testcase_13 AC 89 ms
43,648 KB
testcase_14 AC 75 ms
43,648 KB
testcase_15 AC 63 ms
39,424 KB
testcase_16 AC 62 ms
39,040 KB
testcase_17 AC 63 ms
39,424 KB
testcase_18 AC 65 ms
39,168 KB
testcase_19 AC 64 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const pi=r=>r.split(" ").map(_=>parseInt(_));

function Main(INPUT){
  const input = INPUT.split("\n");
  const [N,K]=pi(input[0]);
  let H=pi(input[1]);
  let plot=[];
  for(let i=0;i<N;i++){
    plot.push(pi(input[i+2]));
  }
  const dist=((s,t)=>Math.sqrt((s[0]-t[0])*(s[0]-t[0])+(s[1]-t[1])*(s[1]-t[1])));
  let cnt=N;
  for(let i=0;i<N;i++){
    let survive=true;
    for(let j=0;j<N;j++){
      if(i!=j && H[i]<H[j] && dist(plot[i],plot[j])<=K){
        survive=false;
      }
    }
    if(!survive) cnt--;
  }

  console.log(cnt); 
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0