結果

問題 No.292 芸名
ユーザー gemmarogemmaro
提出日時 2020-04-13 13:09:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 1,190 ms
コンパイル使用メモリ 62,256 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-09 23:20:32
合計ジャッジ時間 9,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
54,056 KB
testcase_01 AC 567 ms
53,928 KB
testcase_02 AC 550 ms
54,188 KB
testcase_03 AC 545 ms
53,928 KB
testcase_04 AC 555 ms
54,072 KB
testcase_05 AC 555 ms
54,288 KB
testcase_06 AC 573 ms
54,320 KB
testcase_07 AC 564 ms
54,064 KB
testcase_08 AC 563 ms
54,240 KB
testcase_09 AC 563 ms
53,572 KB
testcase_10 AC 581 ms
53,988 KB
testcase_11 AC 579 ms
54,412 KB
testcase_12 AC 566 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.split()
    |> solve
    |> IO.puts()
  end

  defp solve([s, t, u]) do
    s
    |> String.to_charlist()
    |> List.replace_at(t |> String.to_integer(), '_')
    |> List.replace_at(u |> String.to_integer(), '_')
    |> Enum.filter(&(&1 != '_'))
  end
end
0