結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
49,556 KB
testcase_01 AC 544 ms
50,168 KB
testcase_02 AC 545 ms
49,036 KB
testcase_03 AC 545 ms
49,508 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Hello World!

ソースコード

diff #

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