結果

問題 No.2298 yukicounter
ユーザー noriocnorioc
提出日時 2024-08-15 22:33:52
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,388 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 2,985 ms
コンパイル使用メモリ 61,640 KB
実行使用メモリ 151,392 KB
最終ジャッジ日時 2024-08-15 22:34:21
合計ジャッジ時間 28,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
54,080 KB
testcase_01 AC 564 ms
53,676 KB
testcase_02 AC 526 ms
54,156 KB
testcase_03 AC 1,111 ms
108,592 KB
testcase_04 AC 729 ms
69,704 KB
testcase_05 AC 603 ms
57,136 KB
testcase_06 AC 1,388 ms
146,712 KB
testcase_07 AC 755 ms
68,496 KB
testcase_08 AC 631 ms
59,032 KB
testcase_09 AC 677 ms
62,780 KB
testcase_10 AC 601 ms
55,164 KB
testcase_11 AC 689 ms
65,236 KB
testcase_12 AC 709 ms
64,560 KB
testcase_13 AC 687 ms
68,148 KB
testcase_14 AC 749 ms
67,096 KB
testcase_15 AC 545 ms
53,968 KB
testcase_16 AC 637 ms
58,664 KB
testcase_17 AC 596 ms
57,744 KB
testcase_18 AC 560 ms
54,056 KB
testcase_19 AC 549 ms
53,488 KB
testcase_20 AC 542 ms
54,072 KB
testcase_21 AC 551 ms
53,796 KB
testcase_22 AC 686 ms
68,596 KB
testcase_23 AC 704 ms
67,324 KB
testcase_24 AC 1,327 ms
151,392 KB
testcase_25 AC 837 ms
90,856 KB
testcase_26 AC 659 ms
65,076 KB
testcase_27 AC 1,149 ms
123,576 KB
testcase_28 AC 695 ms
63,388 KB
testcase_29 AC 627 ms
60,036 KB
testcase_30 AC 565 ms
54,192 KB
testcase_31 AC 613 ms
59,584 KB
testcase_32 AC 685 ms
63,288 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()
    f(s, 0, 0)
    |> IO.puts
  end

  def f(s, k, m) do
    case s do
      "" -> max(k, m)
      "yukicoder" <> t -> f(t, k+1, m)
      _ ->
        {_, t} = String.next_grapheme(s)
        f(t, 0, max(k, m))
    end
  end
end
0