結果

問題 No.1534 おなかがいたい
ユーザー noriocnorioc
提出日時 2024-08-13 21:34:03
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 4,399 ms
コンパイル使用メモリ 64,108 KB
実行使用メモリ 73,244 KB
最終ジャッジ日時 2024-08-13 21:34:26
合計ジャッジ時間 20,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 643 ms
53,680 KB
testcase_01 AC 618 ms
53,560 KB
testcase_02 AC 618 ms
53,540 KB
testcase_03 AC 615 ms
54,152 KB
testcase_04 AC 636 ms
53,680 KB
testcase_05 AC 619 ms
53,424 KB
testcase_06 AC 633 ms
53,932 KB
testcase_07 AC 619 ms
53,560 KB
testcase_08 WA -
testcase_09 AC 628 ms
53,928 KB
testcase_10 AC 632 ms
53,984 KB
testcase_11 AC 622 ms
53,540 KB
testcase_12 AC 821 ms
71,508 KB
testcase_13 AC 812 ms
71,712 KB
testcase_14 AC 825 ms
71,460 KB
testcase_15 WA -
testcase_16 AC 829 ms
71,240 KB
testcase_17 AC 870 ms
71,736 KB
testcase_18 AC 852 ms
71,356 KB
testcase_19 AC 804 ms
71,216 KB
testcase_20 AC 846 ms
71,144 KB
testcase_21 AC 626 ms
53,672 KB
testcase_22 AC 614 ms
53,684 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() |> String.to_charlist
    f(s, 0, -1)
    |> IO.puts
  end

  def f(xs, k, m) do
    case xs do
      [?p, ?a, ?i, ?n | ys] -> f(ys, 0, max(k-1, m))
      [?p, ?o, ?n | ys] -> f(ys, k+1, m)
      [_ | ys] -> f(ys, k, m)
      [] -> m
    end
  end
end
0