結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | ヒッキープログラミングするスレ |
提出日時 | 2016-08-12 18:58:50 |
言語 | Elixir (1.16.2) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 989 ms |
コンパイル使用メモリ | 60,324 KB |
実行使用メモリ | 65,668 KB |
最終ジャッジ日時 | 2024-06-09 21:56:50 |
合計ジャッジ時間 | 4,485 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
コンパイルメッセージ
Hello World!
ソースコード
# http://elixir-lang.org/ からコピペ parent = self() # Spawns an Elixir process (not an operating system one!) spawn_link(fn -> send parent, {:msg, "Hello World!"} end) # Block until the message is received receive do {:msg, contents} -> IO.puts contents end