結果

問題 No.2922 Rose Garden
ユーザー noriocnorioc
提出日時 2024-11-12 04:15:03
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 62,616 KB
実行使用メモリ 286,932 KB
最終ジャッジ日時 2024-11-12 04:16:24
合計ジャッジ時間 71,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,546 ms
181,860 KB
testcase_01 AC 1,164 ms
128,924 KB
testcase_02 AC 1,616 ms
173,424 KB
testcase_03 AC 1,849 ms
270,660 KB
testcase_04 AC 1,607 ms
176,824 KB
testcase_05 AC 1,451 ms
152,376 KB
testcase_06 AC 1,109 ms
130,560 KB
testcase_07 AC 1,672 ms
229,176 KB
testcase_08 AC 829 ms
83,856 KB
testcase_09 AC 1,725 ms
238,520 KB
testcase_10 AC 1,042 ms
115,700 KB
testcase_11 AC 840 ms
84,016 KB
testcase_12 AC 1,494 ms
164,784 KB
testcase_13 AC 1,867 ms
209,988 KB
testcase_14 AC 798 ms
77,020 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 645 ms
59,276 KB
testcase_31 AC 608 ms
55,292 KB
testcase_32 AC 621 ms
57,580 KB
testcase_33 AC 616 ms
55,136 KB
testcase_34 AC 666 ms
60,488 KB
testcase_35 AC 638 ms
57,016 KB
testcase_36 AC 704 ms
65,768 KB
testcase_37 AC 752 ms
69,872 KB
testcase_38 AC 654 ms
59,668 KB
testcase_39 AC 724 ms
64,264 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 562 ms
53,932 KB
testcase_51 AC 581 ms
54,060 KB
testcase_52 AC 641 ms
54,056 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 is_mma(a, a, b), do: a != b
  def is_mma(_, _, _), do: false

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

    h
    |> Enum.chunk_every(2, 1, :discard)
    |> Enum.any?(fn [x, y] -> x+s*b < y end)
    |> then(fn b -> not b end)
    |> yn()
  end
end
0