結果

問題 No.1445 新入生プログラミング鯖
ユーザー バカらっくバカらっく
提出日時 2022-02-04 13:08:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 9,901 ms
コンパイル使用メモリ 420,744 KB
実行使用メモリ 49,756 KB
最終ジャッジ日時 2024-06-11 10:11:01
合計ジャッジ時間 14,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
49,624 KB
testcase_01 AC 290 ms
49,608 KB
testcase_02 AC 288 ms
49,752 KB
testcase_03 AC 287 ms
49,364 KB
testcase_04 AC 285 ms
49,620 KB
testcase_05 AC 289 ms
49,756 KB
testcase_06 AC 297 ms
49,504 KB
testcase_07 AC 289 ms
49,748 KB
testcase_08 AC 289 ms
49,388 KB
testcase_09 AC 289 ms
49,588 KB
testcase_10 AC 301 ms
49,476 KB
testcase_11 AC 300 ms
49,636 KB
testcase_12 AC 294 ms
49,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    repeat(n) {
        println("Hello! You're new here, right? It's nice to meet you.")
    }
}
0