結果

問題 No.427 テレビ
ユーザー gemmarogemmaro
提出日時 2020-04-11 07:48:08
言語 Elixir
(1.16.2)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 1,249 ms
コンパイル使用メモリ 63,160 KB
実行使用メモリ 56,384 KB
最終ジャッジ日時 2024-06-09 23:17:47
合計ジャッジ時間 7,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
54,212 KB
testcase_01 AC 547 ms
55,372 KB
testcase_02 AC 633 ms
54,236 KB
testcase_03 AC 547 ms
54,304 KB
testcase_04 AC 558 ms
54,740 KB
testcase_05 AC 547 ms
54,256 KB
testcase_06 AC 556 ms
54,056 KB
testcase_07 AC 564 ms
56,384 KB
testcase_08 AC 553 ms
53,876 KB
testcase_09 AC 551 ms
54,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer(&1))
    |> (fn [h, w] ->
          cond do
            h < w -> "YOKO"
            true -> "TATE"
          end
        end).()
    |> IO.puts()
  end
end
0