結果

問題 No.729 文字swap
ユーザー gemmarogemmaro
提出日時 2020-04-10 07:09:54
言語 Elixir
(1.16.2)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 65,520 KB
実行使用メモリ 55,376 KB
最終ジャッジ日時 2024-06-09 23:14:54
合計ジャッジ時間 10,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
54,700 KB
testcase_01 AC 555 ms
54,128 KB
testcase_02 AC 547 ms
54,048 KB
testcase_03 AC 549 ms
54,036 KB
testcase_04 AC 547 ms
54,440 KB
testcase_05 AC 537 ms
53,996 KB
testcase_06 AC 531 ms
54,332 KB
testcase_07 AC 542 ms
54,000 KB
testcase_08 AC 539 ms
54,732 KB
testcase_09 AC 529 ms
55,128 KB
testcase_10 AC 533 ms
55,376 KB
testcase_11 AC 546 ms
54,108 KB
testcase_12 AC 553 ms
53,932 KB
testcase_13 AC 541 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    s =
      IO.gets("")
      |> String.trim()
      |> String.to_charlist()

    [i, j] =
      IO.gets("")
      |> String.trim()
      |> String.split()
      |> Enum.map(&(String.to_integer(&1)))

    s_i = Enum.at(s, i)
    s_j = Enum.at(s, j)

    s
    |> List.replace_at(i, s_j)
    |> List.replace_at(j, s_i)
    |> IO.puts()
  end
end
0