結果

問題 No.2298 yukicounter
ユーザー noriocnorioc
提出日時 2024-08-13 01:19:38
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,616 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 61,616 KB
実行使用メモリ 158,980 KB
最終ジャッジ日時 2024-08-13 01:20:14
合計ジャッジ時間 30,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
54,156 KB
testcase_01 AC 571 ms
53,852 KB
testcase_02 AC 608 ms
53,944 KB
testcase_03 AC 1,222 ms
110,012 KB
testcase_04 AC 778 ms
73,500 KB
testcase_05 AC 666 ms
58,056 KB
testcase_06 AC 1,437 ms
147,952 KB
testcase_07 AC 763 ms
71,156 KB
testcase_08 AC 683 ms
60,208 KB
testcase_09 AC 696 ms
64,124 KB
testcase_10 AC 634 ms
55,380 KB
testcase_11 AC 760 ms
66,704 KB
testcase_12 AC 721 ms
65,092 KB
testcase_13 AC 767 ms
68,744 KB
testcase_14 AC 744 ms
67,340 KB
testcase_15 AC 596 ms
53,820 KB
testcase_16 AC 642 ms
60,348 KB
testcase_17 AC 696 ms
58,780 KB
testcase_18 AC 575 ms
53,688 KB
testcase_19 AC 601 ms
53,812 KB
testcase_20 AC 575 ms
53,564 KB
testcase_21 AC 591 ms
54,360 KB
testcase_22 AC 749 ms
71,856 KB
testcase_23 AC 758 ms
69,312 KB
testcase_24 AC 1,616 ms
158,980 KB
testcase_25 AC 961 ms
90,792 KB
testcase_26 AC 725 ms
66,684 KB
testcase_27 AC 1,213 ms
126,060 KB
testcase_28 AC 733 ms
67,460 KB
testcase_29 AC 695 ms
60,672 KB
testcase_30 AC 572 ms
53,932 KB
testcase_31 AC 680 ms
60,480 KB
testcase_32 AC 693 ms
66,764 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
    ans = f(s, 0, 0)
    IO.puts ans
  end

  def f([], k, m), do: max(k, m)
  def f([?y, ?u, ?k, ?i, ?c, ?o, ?d, ?e, ?r | xs], k, m) do
    f(xs, k+1, m)
  end

  def f([_ | xs], k, m) do
    f(xs, 0, max(k, m))
  end
end
0