結果

問題 No.2557 緑以下コンテスト
ユーザー noriocnorioc
提出日時 2024-08-28 03:45:17
言語 Elixir
(1.16.2)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 61,444 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-08-28 03:45:31
合計ジャッジ時間 9,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 607 ms
54,400 KB
testcase_01 AC 644 ms
53,736 KB
testcase_02 AC 612 ms
54,096 KB
testcase_03 AC 639 ms
54,080 KB
testcase_04 AC 612 ms
54,164 KB
testcase_05 AC 646 ms
54,280 KB
testcase_06 AC 626 ms
53,988 KB
testcase_07 AC 658 ms
53,692 KB
testcase_08 AC 612 ms
54,000 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 = ii()

    case n < 1200 do
      true -> "green"
      false -> "difficult"
    end
    |> IO.puts
  end
end
0