結果

問題 No.9000 Hello World! (テスト用)
ユーザー mont-petitmont-petit
提出日時 2018-10-05 16:05:06
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 5,000 ms
コード長 142 bytes
コンパイル時間 7,139 ms
コンパイル使用メモリ 239,156 KB
実行使用メモリ 61,376 KB
最終ジャッジ日時 2023-09-13 20:16:02
合計ジャッジ時間 11,902 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 885 ms
61,216 KB
testcase_01 AC 900 ms
61,228 KB
testcase_02 AC 897 ms
61,376 KB
testcase_03 AC 902 ms
61,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {

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