結果

問題 No.1070 Missing a space
ユーザー noriocnorioc
提出日時 2024-11-07 06:03:11
言語 Elixir
(1.16.2)
結果
AC  
実行時間 688 ms / 1,000 ms
コード長 365 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 61,396 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-07 06:03:22
合計ジャッジ時間 9,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 654 ms
53,692 KB
testcase_01 AC 635 ms
53,984 KB
testcase_02 AC 659 ms
54,040 KB
testcase_03 AC 642 ms
53,816 KB
testcase_04 AC 680 ms
53,552 KB
testcase_05 AC 660 ms
53,936 KB
testcase_06 AC 688 ms
54,004 KB
testcase_07 AC 652 ms
53,940 KB
testcase_08 AC 682 ms
53,944 KB
testcase_09 AC 656 ms
54,292 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
    cs = input() |> String.graphemes()
    ans = Enum.count(cs, fn c -> c != "0" end) - 1
    IO.puts ans
  end
end
0