結果

問題 No.9000 Hello World! (テスト用)
ユーザー shiroshiro
提出日時 2021-07-10 22:30:05
言語 Elixir
(1.16.2)
結果
AC  
実行時間 651 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 61,560 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-07-02 02:52:54
合計ジャッジ時間 5,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
53,828 KB
testcase_01 AC 636 ms
53,680 KB
testcase_02 AC 651 ms
53,996 KB
testcase_03 AC 632 ms
54,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Hello World!

ソースコード

diff #

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