結果

問題 No.418 ミンミンゼミ
ユーザー noriocnorioc
提出日時 2024-11-30 05:46:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 688 ms / 1,000 ms
コード長 334 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 61,060 KB
実行使用メモリ 55,264 KB
最終ジャッジ日時 2024-11-30 05:46:39
合計ジャッジ時間 23,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 688 ms
53,908 KB
testcase_01 AC 648 ms
53,932 KB
testcase_02 AC 659 ms
54,700 KB
testcase_03 AC 641 ms
54,272 KB
testcase_04 AC 645 ms
53,996 KB
testcase_05 AC 635 ms
54,304 KB
testcase_06 AC 647 ms
54,860 KB
testcase_07 AC 639 ms
53,984 KB
testcase_08 AC 638 ms
54,396 KB
testcase_09 AC 636 ms
54,088 KB
testcase_10 AC 640 ms
53,604 KB
testcase_11 AC 642 ms
53,732 KB
testcase_12 AC 646 ms
53,720 KB
testcase_13 AC 643 ms
53,992 KB
testcase_14 AC 635 ms
54,680 KB
testcase_15 AC 635 ms
54,132 KB
testcase_16 AC 640 ms
53,972 KB
testcase_17 AC 645 ms
54,656 KB
testcase_18 AC 649 ms
54,128 KB
testcase_19 AC 631 ms
55,264 KB
testcase_20 AC 640 ms
53,728 KB
testcase_21 AC 659 ms
54,244 KB
testcase_22 AC 646 ms
53,868 KB
testcase_23 AC 634 ms
54,888 KB
testcase_24 AC 636 ms
54,112 KB
testcase_25 AC 634 ms
53,560 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()

    ss = Regex.scan(~r/mi-*n/, s)
    IO.puts length(ss)
  end
end
0