結果

問題 No.1020 Reverse
ユーザー gemmarogemmaro
提出日時 2020-04-21 21:48:34
言語 Elixir
(1.18.1)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 63,220 KB
実行使用メモリ 74,148 KB
最終ジャッジ日時 2024-12-31 04:34:03
合計ジャッジ時間 14,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 566 ms
54,168 KB
testcase_01 AC 565 ms
53,908 KB
testcase_02 AC 569 ms
54,028 KB
testcase_03 WA -
testcase_04 AC 583 ms
54,464 KB
testcase_05 AC 570 ms
54,628 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 644 ms
66,048 KB
testcase_09 AC 646 ms
64,300 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 679 ms
72,336 KB
testcase_13 AC 678 ms
71,640 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 669 ms
71,064 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