結果

問題 No.646 逆ピラミッド
ユーザー gemmarogemmaro
提出日時 2020-04-12 08:25:10
言語 Elixir
(1.16.2)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 62,456 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-06-09 23:18:49
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 646 ms
53,684 KB
testcase_01 AC 641 ms
53,760 KB
testcase_02 AC 664 ms
54,280 KB
testcase_03 AC 653 ms
53,816 KB
testcase_04 AC 651 ms
53,856 KB
testcase_05 AC 649 ms
54,056 KB
testcase_06 AC 653 ms
53,928 KB
testcase_07 AC 647 ms
54,160 KB
testcase_08 AC 652 ms
54,544 KB
testcase_09 AC 648 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n =
      IO.read(:line)
      |> String.trim()
      |> String.to_integer()

    0..(n - 1)
    |> Enum.map(fn i ->
      0..(n - i - 1)
      |> Enum.map(fn _ -> n end)
      |> Enum.join()
    end)
    |> Enum.join("\n")
    |> IO.puts()
  end
end
0