結果

問題 No.796 well known
ユーザー noriocnorioc
提出日時 2024-11-07 22:11:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 697 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 5,795 ms
コンパイル使用メモリ 60,540 KB
実行使用メモリ 79,536 KB
最終ジャッジ日時 2024-11-07 22:11:44
合計ジャッジ時間 18,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 659 ms
54,184 KB
testcase_01 AC 651 ms
53,912 KB
testcase_02 AC 626 ms
53,800 KB
testcase_03 AC 648 ms
53,932 KB
testcase_04 AC 645 ms
69,776 KB
testcase_05 AC 697 ms
74,412 KB
testcase_06 AC 663 ms
78,980 KB
testcase_07 AC 664 ms
58,216 KB
testcase_08 AC 654 ms
74,280 KB
testcase_09 AC 667 ms
67,316 KB
testcase_10 AC 660 ms
79,536 KB
testcase_11 AC 655 ms
55,672 KB
testcase_12 AC 636 ms
63,276 KB
testcase_13 AC 659 ms
70,184 KB
testcase_14 AC 624 ms
60,976 KB
testcase_15 AC 665 ms
65,444 KB
testcase_16 AC 656 ms
78,760 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 = ii()

    ans = List.duplicate(3, n-1) ++ [1]
    IO.puts Enum.join(ans, " ")
  end
end
0