結果

問題 No.9000 Hello World! (テスト用)
ユーザー mont-petit
提出日時 2018-10-05 16:05:06
言語 Scala(Beta)
(3.8.2)
コンパイル:
scalac _filename_
実行:
/usr/bin/scala_run _class_
結果
AC  
実行時間 233 ms / 5,000 ms
+ 475µs
コード長 142 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,401 ms
コンパイル使用メモリ 258,444 KB
実行使用メモリ 50,628 KB
最終ジャッジ日時 2026-07-28 14:39:32
合計ジャッジ時間 7,457 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import scala.io.StdIn.readLine

object Main {

    def main(args: Array[String]) = {
        readLine
        println("Hello World!")
    }
}
0