結果

問題 No.2922 Rose Garden
ユーザー noriocnorioc
提出日時 2024-11-12 04:26:29
言語 Elixir
(1.16.2)
結果
AC  
実行時間 2,024 ms / 3,000 ms
コード長 519 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 62,100 KB
実行使用メモリ 268,964 KB
最終ジャッジ日時 2024-11-12 04:27:52
合計ジャッジ時間 74,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,769 ms
163,792 KB
testcase_01 AC 1,272 ms
129,684 KB
testcase_02 AC 1,594 ms
158,724 KB
testcase_03 AC 1,906 ms
233,304 KB
testcase_04 AC 1,599 ms
169,808 KB
testcase_05 AC 1,623 ms
153,196 KB
testcase_06 AC 1,155 ms
132,700 KB
testcase_07 AC 1,732 ms
230,080 KB
testcase_08 AC 844 ms
84,652 KB
testcase_09 AC 1,780 ms
235,572 KB
testcase_10 AC 1,156 ms
115,224 KB
testcase_11 AC 884 ms
84,060 KB
testcase_12 AC 1,749 ms
162,512 KB
testcase_13 AC 1,838 ms
211,036 KB
testcase_14 AC 862 ms
77,352 KB
testcase_15 AC 1,607 ms
156,096 KB
testcase_16 AC 1,688 ms
201,316 KB
testcase_17 AC 1,885 ms
231,500 KB
testcase_18 AC 750 ms
61,540 KB
testcase_19 AC 1,363 ms
133,276 KB
testcase_20 AC 1,717 ms
180,004 KB
testcase_21 AC 2,024 ms
234,472 KB
testcase_22 AC 1,541 ms
154,808 KB
testcase_23 AC 1,889 ms
230,088 KB
testcase_24 AC 859 ms
71,824 KB
testcase_25 AC 1,387 ms
136,944 KB
testcase_26 AC 1,721 ms
175,308 KB
testcase_27 AC 1,816 ms
206,308 KB
testcase_28 AC 1,797 ms
196,008 KB
testcase_29 AC 1,649 ms
180,480 KB
testcase_30 AC 684 ms
59,180 KB
testcase_31 AC 654 ms
55,040 KB
testcase_32 AC 676 ms
57,836 KB
testcase_33 AC 631 ms
54,584 KB
testcase_34 AC 728 ms
60,160 KB
testcase_35 AC 694 ms
56,836 KB
testcase_36 AC 772 ms
65,552 KB
testcase_37 AC 837 ms
68,476 KB
testcase_38 AC 711 ms
59,188 KB
testcase_39 AC 761 ms
64,212 KB
testcase_40 AC 1,615 ms
176,856 KB
testcase_41 AC 1,261 ms
114,060 KB
testcase_42 AC 1,929 ms
251,688 KB
testcase_43 AC 1,507 ms
137,316 KB
testcase_44 AC 1,914 ms
246,520 KB
testcase_45 AC 894 ms
86,168 KB
testcase_46 AC 1,987 ms
268,964 KB
testcase_47 AC 1,718 ms
189,588 KB
testcase_48 AC 879 ms
82,148 KB
testcase_49 AC 1,838 ms
207,888 KB
testcase_50 AC 632 ms
53,684 KB
testcase_51 AC 606 ms
54,412 KB
testcase_52 AC 634 ms
53,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts (if b, do: "Yes", else: "No")

  def main do
    [_n, s, b] = li()
    h = li()

    init = Enum.at(h, 0) + s*b
    Enum.reduce_while(h, init, fn x, acc ->
      if acc < x do
        {:halt, -1}
      else
        {:cont, max(acc, x + s*b)}
      end
    end)
    |> then(fn x -> x > 0 end)
    |> yn()
  end
end
0