結果

問題 No.9000 Hello World! (テスト用)
ユーザー mont-petitmont-petit
提出日時 2018-10-05 16:04:25
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 903 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 8,008 ms
コンパイル使用メモリ 243,344 KB
実行使用メモリ 62,032 KB
最終ジャッジ日時 2023-09-13 20:15:50
合計ジャッジ時間 11,916 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 903 ms
61,832 KB
testcase_01 AC 886 ms
61,660 KB
testcase_02 AC 889 ms
61,852 KB
testcase_03 AC 886 ms
62,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {

    def main(args: Array[String]) = {
        readLine
        print(f"Hello World!\n")
    }
}
0