結果

問題 No.2460 #強調#
ユーザー noriocnorioc
提出日時 2024-11-07 05:45:24
言語 Elixir
(1.16.2)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 4,663 ms
コンパイル使用メモリ 60,640 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-11-07 05:45:39
合計ジャッジ時間 13,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 635 ms
54,056 KB
testcase_01 AC 620 ms
54,048 KB
testcase_02 AC 634 ms
54,060 KB
testcase_03 AC 626 ms
53,988 KB
testcase_04 AC 634 ms
53,928 KB
testcase_05 AC 631 ms
53,672 KB
testcase_06 AC 642 ms
53,680 KB
testcase_07 AC 617 ms
54,156 KB
testcase_08 AC 657 ms
53,552 KB
testcase_09 AC 626 ms
53,764 KB
testcase_10 AC 624 ms
53,940 KB
testcase_11 AC 617 ms
53,636 KB
testcase_12 AC 625 ms
53,968 KB
testcase_13 AC 629 ms
54,024 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
    s = input()

    [m] = Regex.run(~r/#.*#/, s)
    ans = String.slice(m, 1..-2//1)
    IO.puts ans
  end
end
0