結果

問題 No.2922 Rose Garden
ユーザー anago-pieanago-pie
提出日時 2024-10-26 04:40:31
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 215 ms / 3,000 ms
コード長 387 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 62,288 KB
最終ジャッジ日時 2024-10-26 04:40:45
合計ジャッジ時間 11,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
52,416 KB
testcase_01 AC 110 ms
48,020 KB
testcase_02 AC 144 ms
52,212 KB
testcase_03 AC 215 ms
62,240 KB
testcase_04 AC 146 ms
52,380 KB
testcase_05 AC 138 ms
52,368 KB
testcase_06 AC 109 ms
47,852 KB
testcase_07 AC 202 ms
57,180 KB
testcase_08 AC 95 ms
46,772 KB
testcase_09 AC 189 ms
61,060 KB
testcase_10 AC 100 ms
47,244 KB
testcase_11 AC 99 ms
48,684 KB
testcase_12 AC 149 ms
52,392 KB
testcase_13 AC 164 ms
56,160 KB
testcase_14 AC 87 ms
46,332 KB
testcase_15 AC 143 ms
52,324 KB
testcase_16 AC 154 ms
53,872 KB
testcase_17 AC 202 ms
61,896 KB
testcase_18 AC 75 ms
43,136 KB
testcase_19 AC 122 ms
49,084 KB
testcase_20 AC 157 ms
52,752 KB
testcase_21 AC 199 ms
61,432 KB
testcase_22 AC 140 ms
52,092 KB
testcase_23 AC 208 ms
57,224 KB
testcase_24 AC 85 ms
44,284 KB
testcase_25 AC 131 ms
51,296 KB
testcase_26 AC 160 ms
53,216 KB
testcase_27 AC 162 ms
56,028 KB
testcase_28 AC 161 ms
53,204 KB
testcase_29 AC 151 ms
52,528 KB
testcase_30 AC 79 ms
43,776 KB
testcase_31 AC 70 ms
39,296 KB
testcase_32 AC 101 ms
43,008 KB
testcase_33 AC 70 ms
41,328 KB
testcase_34 AC 75 ms
44,032 KB
testcase_35 AC 70 ms
42,880 KB
testcase_36 AC 78 ms
44,672 KB
testcase_37 AC 82 ms
44,520 KB
testcase_38 AC 76 ms
44,032 KB
testcase_39 AC 79 ms
44,416 KB
testcase_40 AC 153 ms
52,696 KB
testcase_41 AC 107 ms
47,388 KB
testcase_42 AC 206 ms
61,684 KB
testcase_43 AC 141 ms
49,028 KB
testcase_44 AC 202 ms
61,628 KB
testcase_45 AC 96 ms
46,524 KB
testcase_46 AC 214 ms
62,288 KB
testcase_47 AC 156 ms
53,320 KB
testcase_48 AC 93 ms
46,496 KB
testcase_49 AC 185 ms
59,508 KB
testcase_50 AC 68 ms
39,424 KB
testcase_51 AC 72 ms
39,296 KB
testcase_52 AC 66 ms
39,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(INPUT){
  const input = INPUT.split("\n");
  const [N,S,B]=input[0].split(" ").map(_=>parseInt(_));
  let h=0;
  const H=input[1].split(" ").map(_=>parseInt(_));
  h=H[0]+S*B;
  for(let i=1;i<N;i++){
    if(H[i]>h){
      console.log("No");
      return;
    }
    h=Math.max(h, H[i]+S*B);
  }
  console.log("Yes");
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0