結果

問題 No.9000 Hello World! (テスト用)
ユーザー mont-petitmont-petit
提出日時 2018-10-05 16:04:25
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 910 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 7,883 ms
コンパイル使用メモリ 253,904 KB
実行使用メモリ 64,616 KB
最終ジャッジ日時 2024-07-01 04:44:48
合計ジャッジ時間 12,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
64,368 KB
testcase_01 AC 910 ms
64,544 KB
testcase_02 AC 909 ms
64,520 KB
testcase_03 AC 897 ms
64,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main {

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