結果

問題 No.2049 POP
ユーザー noriocnorioc
提出日時 2024-08-17 07:59:09
言語 Elixir
(1.16.2)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 4,618 ms
コンパイル使用メモリ 64,648 KB
実行使用メモリ 55,264 KB
最終ジャッジ日時 2024-08-17 07:59:23
合計ジャッジ時間 11,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 650 ms
54,348 KB
testcase_01 AC 665 ms
54,128 KB
testcase_02 AC 642 ms
54,008 KB
testcase_03 AC 654 ms
55,264 KB
testcase_04 AC 629 ms
54,108 KB
testcase_05 AC 661 ms
53,884 KB
testcase_06 AC 627 ms
54,108 KB
testcase_07 AC 650 ms
54,608 KB
testcase_08 AC 633 ms
54,000 KB
testcase_09 AC 665 ms
53,872 KB
testcase_10 AC 634 ms
54,416 KB
testcase_11 AC 698 ms
53,796 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
    input()
    s = input() |> String.to_charlist

    {_, xs} = List.pop_at(s, length(s)-1)
    xs
    |> Enum.drop(1)
    |> IO.puts
  end
end
0