結果

問題 No.1020 Reverse
ユーザー gemmarogemmaro
提出日時 2020-04-21 21:48:34
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 62,636 KB
実行使用メモリ 70,104 KB
最終ジャッジ日時 2024-06-09 23:47:02
合計ジャッジ時間 13,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
53,904 KB
testcase_01 AC 524 ms
54,192 KB
testcase_02 AC 528 ms
53,748 KB
testcase_03 WA -
testcase_04 AC 539 ms
54,064 KB
testcase_05 AC 524 ms
54,004 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 684 ms
66,544 KB
testcase_09 AC 661 ms
63,892 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 697 ms
69,112 KB
testcase_13 AC 679 ms
69,188 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 671 ms
69,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [_, k] =
      IO.read(:line)
      |> String.trim()
      |> String.split()
      |> Enum.map(&String.to_integer/1)

    IO.read(:line)
    |> String.trim()
    |> solve(k)
    |> IO.puts()
  end

  def solve(s, k) do
    {a, b} = s |> String.split_at(k - 1)
    b <> a
  end
end
0