結果

問題 No.2050 Speed
ユーザー noriocnorioc
提出日時 2024-08-17 18:45:28
言語 Elixir
(1.16.2)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 63,312 KB
実行使用メモリ 55,408 KB
最終ジャッジ日時 2024-08-17 18:45:43
合計ジャッジ時間 14,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 643 ms
55,064 KB
testcase_01 AC 625 ms
53,996 KB
testcase_02 AC 648 ms
53,620 KB
testcase_03 AC 617 ms
54,008 KB
testcase_04 AC 647 ms
54,000 KB
testcase_05 AC 614 ms
54,000 KB
testcase_06 AC 663 ms
54,868 KB
testcase_07 AC 622 ms
54,292 KB
testcase_08 AC 642 ms
53,868 KB
testcase_09 AC 615 ms
54,148 KB
testcase_10 AC 664 ms
54,788 KB
testcase_11 AC 620 ms
55,408 KB
testcase_12 AC 642 ms
54,492 KB
testcase_13 AC 610 ms
54,360 KB
testcase_14 AC 661 ms
53,988 KB
testcase_15 AC 621 ms
54,248 KB
testcase_16 AC 636 ms
53,876 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
    [a, b] = li()

    x = a * 1000
    y = b * 60 * 60
    cond do
      x > y -> "KoD"
      x < y -> "blackyuki"
      true -> "same"
    end
    |> IO.puts
  end
end
0