結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー gemmarogemmaro
提出日時 2020-04-19 16:48:50
言語 Elixir
(1.16.2)
結果
AC  
実行時間 556 ms / 1,000 ms
コード長 567 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 63,008 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-09 23:44:59
合計ジャッジ時間 20,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
54,148 KB
testcase_01 AC 529 ms
53,928 KB
testcase_02 AC 533 ms
54,072 KB
testcase_03 AC 542 ms
54,064 KB
testcase_04 AC 534 ms
54,204 KB
testcase_05 AC 554 ms
54,296 KB
testcase_06 AC 550 ms
54,672 KB
testcase_07 AC 556 ms
54,108 KB
testcase_08 AC 548 ms
53,632 KB
testcase_09 AC 533 ms
54,064 KB
testcase_10 AC 543 ms
54,064 KB
testcase_11 AC 527 ms
54,528 KB
testcase_12 AC 530 ms
53,796 KB
testcase_13 AC 537 ms
54,540 KB
testcase_14 AC 541 ms
54,064 KB
testcase_15 AC 526 ms
53,872 KB
testcase_16 AC 525 ms
54,008 KB
testcase_17 AC 526 ms
54,068 KB
testcase_18 AC 526 ms
53,812 KB
testcase_19 AC 538 ms
53,668 KB
testcase_20 AC 528 ms
54,004 KB
testcase_21 AC 529 ms
53,772 KB
testcase_22 AC 531 ms
54,152 KB
testcase_23 AC 534 ms
53,756 KB
testcase_24 AC 538 ms
54,076 KB
testcase_25 AC 527 ms
53,936 KB
testcase_26 AC 539 ms
54,056 KB
testcase_27 AC 536 ms
54,072 KB
testcase_28 AC 534 ms
54,180 KB
testcase_29 AC 530 ms
53,940 KB
testcase_30 AC 542 ms
54,472 KB
testcase_31 AC 529 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer/1)
    |> solve
    |> IO.puts()
  end

  def solve(a) do
    a
    |> Enum.map(fn b ->
      x = b |> rem(3) == 0
      y = b |> rem(5) == 0

      cond do
        x || y ->
          cond do
            x -> 4
            true -> 0
          end +
            cond do
              y -> 4
              true -> 0
            end

        true ->
          b |> to_string |> String.length()
      end
    end)
    |> Enum.sum()
  end
end
0