結果

問題 No.1534 おなかがいたい
ユーザー noriocnorioc
提出日時 2024-08-13 21:37:13
言語 Elixir
(1.16.2)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 62,032 KB
実行使用メモリ 73,212 KB
最終ジャッジ日時 2024-08-13 21:37:34
合計ジャッジ時間 20,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 629 ms
53,924 KB
testcase_01 AC 626 ms
54,228 KB
testcase_02 AC 626 ms
53,972 KB
testcase_03 AC 633 ms
53,808 KB
testcase_04 AC 621 ms
54,152 KB
testcase_05 AC 628 ms
53,712 KB
testcase_06 AC 623 ms
54,152 KB
testcase_07 AC 632 ms
53,488 KB
testcase_08 AC 615 ms
54,028 KB
testcase_09 AC 624 ms
53,672 KB
testcase_10 AC 625 ms
53,292 KB
testcase_11 AC 633 ms
54,004 KB
testcase_12 AC 798 ms
68,948 KB
testcase_13 AC 823 ms
71,200 KB
testcase_14 AC 819 ms
73,212 KB
testcase_15 AC 838 ms
70,408 KB
testcase_16 AC 826 ms
71,472 KB
testcase_17 AC 813 ms
71,360 KB
testcase_18 AC 843 ms
71,220 KB
testcase_19 AC 829 ms
71,616 KB
testcase_20 AC 811 ms
71,236 KB
testcase_21 AC 657 ms
53,492 KB
testcase_22 AC 629 ms
53,428 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(pon(k), m))
      [?p, ?o, ?n | ys] -> f(ys, k+1, m)
      [_ | ys] -> f(ys, k, m)
      [] -> m
    end
  end

  def pon(k) do
    if k >= 2, do: k-1, else: -1
  end
end
0