結果

問題 No.791 うし数列
ユーザー gemmarogemmaro
提出日時 2020-04-16 20:13:30
言語 Elixir
(1.16.2)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 1,054 ms
コンパイル使用メモリ 63,388 KB
実行使用メモリ 55,572 KB
最終ジャッジ日時 2024-06-09 23:26:46
合計ジャッジ時間 11,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
54,556 KB
testcase_01 AC 577 ms
54,240 KB
testcase_02 AC 576 ms
54,764 KB
testcase_03 AC 560 ms
54,620 KB
testcase_04 AC 572 ms
54,508 KB
testcase_05 AC 561 ms
54,772 KB
testcase_06 AC 569 ms
55,128 KB
testcase_07 AC 574 ms
55,572 KB
testcase_08 AC 569 ms
55,512 KB
testcase_09 AC 569 ms
54,852 KB
testcase_10 AC 565 ms
54,812 KB
testcase_11 AC 581 ms
54,756 KB
testcase_12 AC 574 ms
54,584 KB
testcase_13 AC 566 ms
55,248 KB
testcase_14 AC 563 ms
55,080 KB
testcase_15 AC 557 ms
55,212 KB
testcase_16 AC 560 ms
54,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  defp solve(n) do
    n
    |> String.slice(1..-1)
    |> (fn o ->
          s = o |> String.length()
          t = o |> String.to_charlist() |> Enum.count(&(&1 == ?3))

          cond do
            n |> String.first() != "1" || s != t || t == 0 -> -1
            true -> s
          end
        end).()
  end
end
0