結果

問題 No.9000 Hello World! (テスト用)
ユーザー shiroshiro
提出日時 2021-07-10 22:30:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 600 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 54,956 KB
実行使用メモリ 49,612 KB
最終ジャッジ日時 2023-09-14 19:58:45
合計ジャッジ時間 4,467 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 594 ms
49,480 KB
testcase_01 AC 592 ms
49,612 KB
testcase_02 AC 592 ms
49,016 KB
testcase_03 AC 600 ms
49,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Hello World!

ソースコード

diff #

defmodule Main do
    def main do
        IO.puts("Hello World!")
    end
end
Main.main()
0