結果

問題 No.2887 Minahoshi (Easy)
ユーザー noriocnorioc
提出日時 2024-09-13 23:19:57
言語 Elixir
(1.16.2)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 5,430 ms
コンパイル使用メモリ 62,172 KB
実行使用メモリ 55,940 KB
最終ジャッジ日時 2024-09-13 23:20:46
合計ジャッジ時間 21,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
54,068 KB
testcase_01 AC 518 ms
55,208 KB
testcase_02 AC 529 ms
54,424 KB
testcase_03 AC 516 ms
54,300 KB
testcase_04 AC 528 ms
53,776 KB
testcase_05 AC 520 ms
54,696 KB
testcase_06 AC 535 ms
55,940 KB
testcase_07 AC 515 ms
55,928 KB
testcase_08 AC 515 ms
54,128 KB
testcase_09 AC 528 ms
53,912 KB
testcase_10 AC 518 ms
54,392 KB
testcase_11 AC 524 ms
54,172 KB
testcase_12 AC 514 ms
54,540 KB
testcase_13 AC 526 ms
54,036 KB
testcase_14 AC 523 ms
53,908 KB
testcase_15 AC 524 ms
54,032 KB
testcase_16 AC 528 ms
54,312 KB
testcase_17 AC 521 ms
54,284 KB
testcase_18 AC 519 ms
54,328 KB
testcase_19 AC 521 ms
54,164 KB
testcase_20 AC 523 ms
54,040 KB
testcase_21 AC 514 ms
54,696 KB
testcase_22 AC 535 ms
54,036 KB
testcase_23 AC 520 ms
54,140 KB
testcase_24 AC 522 ms
54,164 KB
testcase_25 AC 523 ms
54,200 KB
testcase_26 AC 526 ms
54,296 KB
testcase_27 AC 524 ms
54,296 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 = String.duplicate("a", n)
    IO.puts ans
  end
end
0