結果

問題 No.1445 新入生プログラミング鯖
ユーザー yumechiyumechi
提出日時 2021-04-08 01:19:51
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 844 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 10,476 ms
コンパイル使用メモリ 263,716 KB
実行使用メモリ 63,544 KB
最終ジャッジ日時 2024-06-23 05:16:44
合計ジャッジ時間 24,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 803 ms
63,112 KB
testcase_01 AC 822 ms
63,364 KB
testcase_02 AC 830 ms
63,500 KB
testcase_03 AC 844 ms
63,352 KB
testcase_04 AC 843 ms
63,524 KB
testcase_05 AC 828 ms
63,544 KB
testcase_06 AC 835 ms
63,468 KB
testcase_07 AC 839 ms
63,304 KB
testcase_08 AC 838 ms
63,344 KB
testcase_09 AC 837 ms
63,492 KB
testcase_10 AC 820 ms
63,444 KB
testcase_11 AC 817 ms
63,284 KB
testcase_12 AC 826 ms
63,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt

  for(_ <- 0 until n) println("Hello! You're new here, right? It's nice to meet you.")
}
0