結果

問題 No.2870 Dice Making
ユーザー noriocnorioc
提出日時 2024-09-07 05:52:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 2,803 ms
コンパイル使用メモリ 61,520 KB
実行使用メモリ 55,424 KB
最終ジャッジ日時 2024-09-07 05:52:20
合計ジャッジ時間 14,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
54,032 KB
testcase_01 AC 609 ms
54,028 KB
testcase_02 AC 579 ms
55,332 KB
testcase_03 AC 598 ms
53,996 KB
testcase_04 AC 640 ms
53,764 KB
testcase_05 AC 622 ms
53,940 KB
testcase_06 AC 578 ms
54,044 KB
testcase_07 AC 609 ms
54,120 KB
testcase_08 AC 593 ms
53,872 KB
testcase_09 AC 616 ms
54,312 KB
testcase_10 AC 580 ms
54,120 KB
testcase_11 AC 608 ms
54,308 KB
testcase_12 AC 584 ms
53,992 KB
testcase_13 AC 619 ms
55,424 KB
testcase_14 AC 585 ms
53,992 KB
testcase_15 AC 606 ms
54,088 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 main do
    [n, k] = li()

    if rem(n, k) != 0 do
      IO.puts(-1)
    else
      one = div(n, k)
      dices = List.duplicate(1, one) ++ List.duplicate(2, n - one)
      IO.puts Enum.join(dices, " ")
    end
  end
end
0