結果

問題 No.784 「,(カンマ)」
ユーザー nao22bnao22b
提出日時 2019-04-13 17:19:22
言語 Elixir
(1.16.2)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 63,524 KB
実行使用メモリ 55,648 KB
最終ジャッジ日時 2024-06-09 22:30:56
合計ジャッジ時間 10,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
55,020 KB
testcase_01 AC 601 ms
55,332 KB
testcase_02 AC 571 ms
54,376 KB
testcase_03 AC 567 ms
55,316 KB
testcase_04 AC 572 ms
54,308 KB
testcase_05 AC 563 ms
55,648 KB
testcase_06 AC 563 ms
55,016 KB
testcase_07 AC 569 ms
55,164 KB
testcase_08 AC 607 ms
54,656 KB
testcase_09 AC 575 ms
55,440 KB
testcase_10 AC 567 ms
54,428 KB
testcase_11 AC 560 ms
54,720 KB
testcase_12 AC 570 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def solve("", acc), do: acc

    def solve(s, acc) do
        l = String.at(s, -1)
        ss = String.slice(s, 0..-2)
        ac = append(l, acc, String.length(acc))
        solve(ss, ac)
    end

    def append(l, acc, len) when rem(len, 4) == 3 do
        l <> "," <> acc
    end
    def append(l, acc, _) do
        l <> acc
    end

    def main do
        s = IO.gets("") |> String.trim
        IO.puts solve(s, "")
    end
end
0