結果

問題 No.1445 新入生プログラミング鯖
ユーザー fukafukatanifukafukatani
提出日時 2021-06-21 23:18:21
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,000 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 8,907 ms
コンパイル使用メモリ 251,228 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2023-09-05 01:58:45
合計ジャッジ時間 23,563 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
63,232 KB
testcase_01 AC 976 ms
62,816 KB
testcase_02 AC 975 ms
62,844 KB
testcase_03 AC 973 ms
62,832 KB
testcase_04 AC 1,000 ms
62,772 KB
testcase_05 AC 987 ms
62,824 KB
testcase_06 AC 978 ms
62,856 KB
testcase_07 AC 972 ms
62,752 KB
testcase_08 AC 987 ms
62,880 KB
testcase_09 AC 975 ms
63,100 KB
testcase_10 AC 977 ms
63,152 KB
testcase_11 AC 988 ms
63,088 KB
testcase_12 AC 982 ms
63,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  (0 until sc.nextInt).foreach(_ => println("Hello! You're new here, right? It's nice to meet you."))
}
0