結果

問題 No.2961 Shiny Monster Master
ユーザー anago-pieanago-pie
提出日時 2024-11-19 01:37:47
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 298 ms / 1,777 ms
コード長 826 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2024-11-19 01:38:08
合計ジャッジ時間 15,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
41,344 KB
testcase_01 AC 134 ms
46,464 KB
testcase_02 AC 103 ms
45,056 KB
testcase_03 AC 112 ms
45,312 KB
testcase_04 AC 87 ms
41,344 KB
testcase_05 AC 136 ms
47,956 KB
testcase_06 AC 94 ms
45,696 KB
testcase_07 AC 143 ms
48,460 KB
testcase_08 AC 219 ms
52,524 KB
testcase_09 AC 85 ms
44,032 KB
testcase_10 AC 229 ms
51,756 KB
testcase_11 AC 194 ms
51,356 KB
testcase_12 AC 180 ms
50,680 KB
testcase_13 AC 97 ms
44,800 KB
testcase_14 AC 188 ms
51,052 KB
testcase_15 AC 220 ms
52,956 KB
testcase_16 AC 102 ms
45,144 KB
testcase_17 AC 232 ms
52,736 KB
testcase_18 AC 266 ms
53,356 KB
testcase_19 AC 211 ms
51,504 KB
testcase_20 AC 220 ms
52,572 KB
testcase_21 AC 200 ms
51,280 KB
testcase_22 AC 87 ms
45,312 KB
testcase_23 AC 199 ms
51,260 KB
testcase_24 AC 196 ms
50,756 KB
testcase_25 AC 229 ms
51,436 KB
testcase_26 AC 247 ms
53,964 KB
testcase_27 AC 144 ms
48,380 KB
testcase_28 AC 135 ms
47,448 KB
testcase_29 AC 102 ms
45,324 KB
testcase_30 AC 161 ms
49,672 KB
testcase_31 AC 173 ms
50,116 KB
testcase_32 AC 195 ms
49,800 KB
testcase_33 AC 214 ms
51,812 KB
testcase_34 AC 182 ms
50,676 KB
testcase_35 AC 252 ms
54,620 KB
testcase_36 AC 169 ms
49,792 KB
testcase_37 AC 266 ms
55,640 KB
testcase_38 AC 187 ms
46,716 KB
testcase_39 AC 201 ms
50,620 KB
testcase_40 AC 191 ms
50,732 KB
testcase_41 AC 143 ms
46,688 KB
testcase_42 AC 249 ms
54,144 KB
testcase_43 AC 150 ms
46,720 KB
testcase_44 AC 291 ms
55,352 KB
testcase_45 AC 59 ms
39,424 KB
testcase_46 AC 179 ms
50,892 KB
testcase_47 AC 157 ms
48,492 KB
testcase_48 AC 97 ms
44,928 KB
testcase_49 AC 164 ms
46,656 KB
testcase_50 AC 186 ms
50,396 KB
testcase_51 AC 226 ms
51,428 KB
testcase_52 AC 131 ms
48,016 KB
testcase_53 AC 113 ms
46,560 KB
testcase_54 AC 97 ms
44,960 KB
testcase_55 AC 170 ms
51,896 KB
testcase_56 AC 203 ms
51,328 KB
testcase_57 AC 135 ms
47,848 KB
testcase_58 AC 160 ms
50,284 KB
testcase_59 AC 193 ms
49,932 KB
testcase_60 AC 159 ms
48,848 KB
testcase_61 AC 149 ms
48,400 KB
testcase_62 AC 267 ms
55,392 KB
testcase_63 AC 198 ms
51,132 KB
testcase_64 AC 132 ms
47,704 KB
testcase_65 AC 208 ms
51,416 KB
testcase_66 AC 92 ms
41,344 KB
testcase_67 AC 113 ms
45,696 KB
testcase_68 AC 87 ms
41,216 KB
testcase_69 AC 108 ms
45,440 KB
testcase_70 AC 97 ms
45,440 KB
testcase_71 AC 82 ms
41,216 KB
testcase_72 AC 110 ms
45,568 KB
testcase_73 AC 108 ms
45,440 KB
testcase_74 AC 275 ms
55,980 KB
testcase_75 AC 274 ms
55,744 KB
testcase_76 AC 298 ms
55,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input=INPUT.split("\n");
  const [R,N] = input[0].split(" ").map(_=>parseInt(_));
  let count = input[1].split(" ").map(_=>parseInt(_));
  count = count.sort((a,b)=>a-b);
  const Q=parseInt(input[2]);
  for(let i=0;i<Q;i++){
    let [l,r]=input[3+i].split(" ").map(_=>parseInt(_));
    l--;
    let [cl,cr]=[l%R, r%R];
    let[lok,lng,rok,rng]=[-1,N,-1,N];
    while(lng>lok+1){
      let mid = Math.floor((lng+lok)/2);
      if(count[mid]<=cl){
        lok=mid;
      }
      else{
        lng=mid;
      }
    }
    while(rng>rok+1){
      let mid = Math.floor((rng+rok)/2);
      if(count[mid]<=cr){
        rok=mid;
      }
      else{
        rng=mid;
      }
    }
    console.log(N*Math.floor(r/R)+rng - N*Math.floor(l/R)-lng);
  }
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0