結果

問題 No.2922 Rose Garden
ユーザー noriocnorioc
提出日時 2024-11-12 04:35:22
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,635 ms / 3,000 ms
コード長 707 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 63,108 KB
実行使用メモリ 98,844 KB
最終ジャッジ日時 2024-11-12 04:36:29
合計ジャッジ時間 67,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,418 ms
75,616 KB
testcase_01 AC 1,102 ms
66,236 KB
testcase_02 AC 1,370 ms
73,760 KB
testcase_03 AC 1,472 ms
93,552 KB
testcase_04 AC 1,408 ms
76,260 KB
testcase_05 AC 1,308 ms
71,328 KB
testcase_06 AC 1,187 ms
64,524 KB
testcase_07 AC 1,461 ms
87,648 KB
testcase_08 AC 889 ms
61,240 KB
testcase_09 AC 1,453 ms
96,140 KB
testcase_10 AC 1,155 ms
64,384 KB
testcase_11 AC 917 ms
61,228 KB
testcase_12 AC 1,447 ms
74,616 KB
testcase_13 AC 1,635 ms
82,984 KB
testcase_14 AC 839 ms
60,332 KB
testcase_15 AC 1,368 ms
72,940 KB
testcase_16 AC 1,414 ms
83,412 KB
testcase_17 AC 1,516 ms
91,736 KB
testcase_18 AC 735 ms
55,948 KB
testcase_19 AC 1,233 ms
71,792 KB
testcase_20 AC 1,409 ms
78,904 KB
testcase_21 AC 1,470 ms
89,552 KB
testcase_22 AC 1,319 ms
71,024 KB
testcase_23 AC 1,484 ms
90,628 KB
testcase_24 AC 838 ms
58,720 KB
testcase_25 AC 1,258 ms
72,548 KB
testcase_26 AC 1,466 ms
82,548 KB
testcase_27 AC 1,462 ms
91,504 KB
testcase_28 AC 1,441 ms
82,028 KB
testcase_29 AC 1,240 ms
76,756 KB
testcase_30 AC 728 ms
55,472 KB
testcase_31 AC 672 ms
53,804 KB
testcase_32 AC 704 ms
54,488 KB
testcase_33 AC 667 ms
53,932 KB
testcase_34 AC 742 ms
56,232 KB
testcase_35 AC 718 ms
53,960 KB
testcase_36 AC 782 ms
56,868 KB
testcase_37 AC 801 ms
57,332 KB
testcase_38 AC 743 ms
54,964 KB
testcase_39 AC 763 ms
57,132 KB
testcase_40 AC 1,412 ms
79,076 KB
testcase_41 AC 987 ms
64,032 KB
testcase_42 AC 1,471 ms
94,136 KB
testcase_43 AC 1,215 ms
70,700 KB
testcase_44 AC 1,465 ms
91,088 KB
testcase_45 AC 864 ms
61,392 KB
testcase_46 AC 1,525 ms
98,844 KB
testcase_47 AC 1,420 ms
81,336 KB
testcase_48 AC 856 ms
60,988 KB
testcase_49 AC 1,455 ms
91,108 KB
testcase_50 AC 658 ms
53,816 KB
testcase_51 AC 633 ms
54,192 KB
testcase_52 AC 656 ms
54,512 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
    {_ok, c} = File.read("/dev/stdin")
    [x, y] = String.trim(c) |> String.split("\n")

    [_n, s, b] = x |> String.split() |> Enum.map(&String.to_integer/1)
    h = y |> String.split() |> Enum.map(&String.to_integer/1)

    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