結果

問題 No.784 「,(カンマ)」
ユーザー noriocnorioc
提出日時 2024-08-06 06:45:33
言語 Elixir
(1.16.2)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 63,008 KB
実行使用メモリ 55,436 KB
最終ジャッジ日時 2024-08-06 06:45:44
合計ジャッジ時間 9,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
54,412 KB
testcase_01 AC 509 ms
54,860 KB
testcase_02 AC 536 ms
54,548 KB
testcase_03 AC 510 ms
54,344 KB
testcase_04 AC 539 ms
54,692 KB
testcase_05 AC 521 ms
54,864 KB
testcase_06 AC 512 ms
54,424 KB
testcase_07 AC 538 ms
55,292 KB
testcase_08 AC 510 ms
53,956 KB
testcase_09 AC 536 ms
54,296 KB
testcase_10 AC 511 ms
55,436 KB
testcase_11 AC 514 ms
54,132 KB
testcase_12 AC 537 ms
54,032 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.split(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