結果

問題 No.1070 Missing a space
ユーザー penqenpenqen
提出日時 2020-12-16 13:27:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 536 ms / 1,000 ms
コード長 197 bytes
コンパイル時間 1,271 ms
コンパイル使用メモリ 62,716 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-10 00:22:17
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
53,800 KB
testcase_01 AC 515 ms
54,152 KB
testcase_02 AC 535 ms
54,420 KB
testcase_03 AC 536 ms
54,060 KB
testcase_04 AC 531 ms
54,048 KB
testcase_05 AC 524 ms
54,064 KB
testcase_06 AC 529 ms
53,928 KB
testcase_07 AC 533 ms
53,776 KB
testcase_08 AC 526 ms
54,088 KB
testcase_09 AC 526 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  def solve(n) do
    n |> String.replace("0", "") |> String.length() |> Kernel.-(1)
  end

end
0