結果

問題 No.725 木は明らかに森である
ユーザー gemmarogemmaro
提出日時 2020-03-31 21:10:59
言語 Elixir
(1.16.2)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 55,132 KB
実行使用メモリ 50,132 KB
最終ジャッジ日時 2023-08-29 23:54:41
合計ジャッジ時間 7,945 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
49,112 KB
testcase_01 AC 610 ms
49,388 KB
testcase_02 AC 620 ms
49,396 KB
testcase_03 AC 628 ms
50,080 KB
testcase_04 AC 630 ms
50,060 KB
testcase_05 AC 621 ms
49,324 KB
testcase_06 AC 634 ms
50,132 KB
testcase_07 AC 615 ms
49,176 KB
testcase_08 AC 613 ms
49,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.replace("treeone", "forest")
    |> IO.puts()
  end
end
0