結果

問題 No.2050 Speed
ユーザー noriocnorioc
提出日時 2024-08-17 18:40:20
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 62,344 KB
実行使用メモリ 56,104 KB
最終ジャッジ日時 2024-08-17 18:40:36
合計ジャッジ時間 11,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
54,488 KB
testcase_01 WA -
testcase_02 AC 541 ms
54,524 KB
testcase_03 WA -
testcase_04 AC 540 ms
53,688 KB
testcase_05 WA -
testcase_06 AC 548 ms
53,992 KB
testcase_07 WA -
testcase_08 AC 583 ms
55,024 KB
testcase_09 WA -
testcase_10 AC 557 ms
53,872 KB
testcase_11 AC 563 ms
53,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    [a, b] = li()

    cond do
      a > b -> "KoD"
      a < b -> "blackyuki"
      true -> "same"
    end
    |> IO.puts
  end
end
0