結果

問題 No.345 最小チワワ問題
ユーザー gemmarogemmaro
提出日時 2020-04-18 21:18:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 964 ms
コンパイル使用メモリ 62,876 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-09 23:36:46
合計ジャッジ時間 19,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
54,056 KB
testcase_01 AC 521 ms
54,064 KB
testcase_02 AC 537 ms
53,888 KB
testcase_03 AC 538 ms
53,748 KB
testcase_04 AC 536 ms
53,796 KB
testcase_05 AC 528 ms
53,748 KB
testcase_06 AC 535 ms
54,056 KB
testcase_07 AC 530 ms
53,864 KB
testcase_08 AC 522 ms
54,032 KB
testcase_09 AC 537 ms
53,924 KB
testcase_10 AC 537 ms
54,184 KB
testcase_11 AC 558 ms
53,928 KB
testcase_12 AC 532 ms
54,352 KB
testcase_13 AC 542 ms
54,056 KB
testcase_14 AC 550 ms
54,116 KB
testcase_15 AC 522 ms
54,064 KB
testcase_16 AC 525 ms
54,324 KB
testcase_17 AC 582 ms
54,348 KB
testcase_18 AC 524 ms
54,196 KB
testcase_19 AC 524 ms
54,000 KB
testcase_20 AC 527 ms
53,984 KB
testcase_21 AC 532 ms
53,800 KB
testcase_22 AC 538 ms
53,984 KB
testcase_23 AC 527 ms
54,020 KB
testcase_24 AC 535 ms
53,688 KB
testcase_25 AC 551 ms
54,060 KB
testcase_26 AC 524 ms
53,876 KB
testcase_27 AC 530 ms
53,868 KB
testcase_28 AC 526 ms
53,720 KB
testcase_29 AC 529 ms
53,688 KB
testcase_30 AC 545 ms
54,192 KB
testcase_31 AC 553 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> solve
    |> IO.puts()
  end

  def solve(s) do
    t = [
      s |> String.length()
      | Regex.scan(~r/(?=(c[^cw]*?w[^w]*?w))/, s)
        |> Enum.map(fn [_, x] -> x |> String.length() end)
    ]

    cond do
      t |> length == 1 -> -1
      true -> t |> Enum.min()
    end
  end
end
0