結果

問題 No.9000 Hello World! (テスト用)
ユーザー mont-petitmont-petit
提出日時 2018-10-05 16:05:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 903 ms / 5,000 ms
コード長 142 bytes
コンパイル時間 9,351 ms
コンパイル使用メモリ 245,852 KB
実行使用メモリ 64,132 KB
最終ジャッジ日時 2024-07-01 04:45:02
合計ジャッジ時間 12,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 874 ms
64,132 KB
testcase_01 AC 877 ms
64,004 KB
testcase_02 AC 884 ms
64,056 KB
testcase_03 AC 903 ms
64,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {

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