結果

問題 No.1445 新入生プログラミング鯖
ユーザー 👑 yumechiyumechi
提出日時 2021-04-08 01:19:51
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 979 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 12,597 ms
コンパイル使用メモリ 257,704 KB
実行使用メモリ 63,168 KB
最終ジャッジ日時 2023-09-05 09:23:16
合計ジャッジ時間 26,421 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 964 ms
63,036 KB
testcase_01 AC 968 ms
63,168 KB
testcase_02 AC 966 ms
62,920 KB
testcase_03 AC 978 ms
62,924 KB
testcase_04 AC 958 ms
62,932 KB
testcase_05 AC 968 ms
63,024 KB
testcase_06 AC 976 ms
62,812 KB
testcase_07 AC 971 ms
63,168 KB
testcase_08 AC 979 ms
62,792 KB
testcase_09 AC 966 ms
63,056 KB
testcase_10 AC 976 ms
62,916 KB
testcase_11 AC 963 ms
62,996 KB
testcase_12 AC 962 ms
62,976 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