結果

問題 No.400 鏡
ユーザー gemmarogemmaro
提出日時 2020-04-07 16:47:35
言語 Elixir
(1.16.2)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 62,504 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-09 23:11:21
合計ジャッジ時間 8,490 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
54,072 KB
testcase_01 AC 539 ms
54,200 KB
testcase_02 AC 534 ms
54,316 KB
testcase_03 AC 527 ms
54,096 KB
testcase_04 AC 530 ms
54,056 KB
testcase_05 AC 537 ms
53,904 KB
testcase_06 AC 541 ms
54,052 KB
testcase_07 AC 527 ms
54,120 KB
testcase_08 AC 529 ms
53,872 KB
testcase_09 AC 555 ms
53,936 KB
testcase_10 AC 539 ms
54,196 KB
testcase_11 AC 535 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.reverse()
    |> String.to_charlist()
    |> Enum.map(fn c ->
      cond do
        [c] |> to_string == "<" -> ">"
        true -> "<"
      end
    end)
    |> Enum.join()
    |> IO.puts()
  end
end
0