結果

問題 No.784 「,(カンマ)」
ユーザー noriocnorioc
提出日時 2024-08-06 06:43:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 3,157 ms
コンパイル使用メモリ 60,596 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-08-06 06:43:31
合計ジャッジ時間 11,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
53,992 KB
testcase_01 AC 560 ms
53,948 KB
testcase_02 AC 550 ms
54,300 KB
testcase_03 AC 576 ms
53,808 KB
testcase_04 AC 555 ms
54,056 KB
testcase_05 AC 569 ms
54,068 KB
testcase_06 AC 544 ms
54,128 KB
testcase_07 AC 573 ms
54,064 KB
testcase_08 AC 541 ms
53,932 KB
testcase_09 AC 584 ms
54,672 KB
testcase_10 AC 545 ms
54,412 KB
testcase_11 AC 550 ms
53,936 KB
testcase_12 AC 591 ms
54,364 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 comma(x) do
    s = Integer.to_string(x) |> String.graphemes
    m = rem(length(s), 3)
    {a, b} = {Enum.take(s, m), Enum.drop(s, m)}

    [a] ++ (b |> Enum.chunk_every(3))
    |> Enum.join(",")
    |> String.trim_leading(",")
  end

  def main do
    n = ii()
    ans = comma(n)
    IO.puts ans
  end
end
0