結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
54,072 KB
testcase_01 AC 572 ms
54,012 KB
testcase_02 AC 609 ms
53,876 KB
testcase_03 AC 554 ms
54,288 KB
testcase_04 AC 535 ms
54,192 KB
testcase_05 AC 536 ms
53,936 KB
testcase_06 AC 549 ms
54,192 KB
testcase_07 AC 550 ms
54,544 KB
testcase_08 AC 568 ms
54,224 KB
testcase_09 AC 537 ms
53,996 KB
testcase_10 AC 530 ms
54,592 KB
testcase_11 AC 561 ms
54,252 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