結果

問題 No.2041 E-mail Address
ユーザー noriocnorioc
提出日時 2024-11-29 00:20:19
言語 Elixir
(1.18.1)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 64,604 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-11-29 00:20:31
合計ジャッジ時間 9,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 603 ms
53,800 KB
testcase_01 AC 576 ms
53,632 KB
testcase_02 AC 593 ms
53,648 KB
testcase_03 AC 578 ms
53,420 KB
testcase_04 AC 593 ms
53,928 KB
testcase_05 AC 564 ms
53,940 KB
testcase_06 AC 574 ms
53,800 KB
testcase_07 AC 565 ms
53,880 KB
testcase_08 AC 580 ms
53,744 KB
testcase_09 AC 557 ms
54,276 KB
testcase_10 AC 567 ms
53,808 KB
testcase_11 AC 598 ms
54,168 KB
testcase_12 AC 571 ms
53,816 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
    t = input()

    Regex.replace(~r/.*(\(.*\)).*/, t, fn m0, m1 ->
      String.replace(m0, m1, "@")
    end)
    |> IO.puts
  end
end
0