結果

問題 No.9000 Hello World! (テスト用)
ユーザー nao22bnao22b
提出日時 2019-04-12 21:02:36
言語 Elixir
(1.16.2)
結果
AC  
実行時間 524 ms / 5,000 ms
コード長 78 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 62,756 KB
実行使用メモリ 53,784 KB
最終ジャッジ日時 2024-06-09 22:27:19
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
53,784 KB
testcase_01 AC 523 ms
53,424 KB
testcase_02 AC 524 ms
53,772 KB
testcase_03 AC 520 ms
53,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0