結果

問題 No.2298 yukicounter
ユーザー noriocnorioc
提出日時 2024-08-13 21:46:46
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,654 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 1,143 ms
コンパイル使用メモリ 63,188 KB
実行使用メモリ 160,856 KB
最終ジャッジ日時 2024-08-13 21:47:19
合計ジャッジ時間 32,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 679 ms
55,764 KB
testcase_01 AC 651 ms
54,696 KB
testcase_02 AC 645 ms
54,208 KB
testcase_03 AC 1,333 ms
114,312 KB
testcase_04 AC 860 ms
77,648 KB
testcase_05 AC 698 ms
57,004 KB
testcase_06 AC 1,506 ms
145,900 KB
testcase_07 AC 835 ms
72,196 KB
testcase_08 AC 742 ms
60,684 KB
testcase_09 AC 759 ms
67,068 KB
testcase_10 AC 685 ms
55,676 KB
testcase_11 AC 797 ms
67,016 KB
testcase_12 AC 798 ms
65,132 KB
testcase_13 AC 843 ms
70,596 KB
testcase_14 AC 836 ms
69,684 KB
testcase_15 AC 651 ms
53,912 KB
testcase_16 AC 717 ms
62,348 KB
testcase_17 AC 708 ms
58,292 KB
testcase_18 AC 627 ms
53,976 KB
testcase_19 AC 651 ms
54,016 KB
testcase_20 AC 642 ms
54,232 KB
testcase_21 AC 650 ms
53,728 KB
testcase_22 AC 865 ms
72,576 KB
testcase_23 AC 807 ms
71,976 KB
testcase_24 AC 1,654 ms
160,856 KB
testcase_25 AC 972 ms
94,652 KB
testcase_26 AC 801 ms
69,700 KB
testcase_27 AC 1,451 ms
129,476 KB
testcase_28 AC 814 ms
69,308 KB
testcase_29 AC 761 ms
60,824 KB
testcase_30 AC 643 ms
54,380 KB
testcase_31 AC 756 ms
62,384 KB
testcase_32 AC 770 ms
68,584 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, 0)
    |> IO.puts
  end

  def f(xs, k, m) do
    case xs do
      [?y, ?u, ?k, ?i, ?c, ?o, ?d, ?e, ?r | ys] -> f(ys, k+1, m)
      [_ | ys] -> f(ys, 0, max(k, m))
      [] -> max(k, m)
    end
  end
end
0