結果

問題 No.1445 新入生プログラミング鯖
ユーザー バカらっくバカらっく
提出日時 2022-02-04 13:08:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 10,904 ms
コンパイル使用メモリ 407,056 KB
実行使用メモリ 50,496 KB
最終ジャッジ日時 2023-09-02 03:31:58
合計ジャッジ時間 16,138 ms
ジャッジサーバーID
(参考情報)
judge11 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
50,496 KB
testcase_01 AC 262 ms
50,216 KB
testcase_02 AC 262 ms
49,884 KB
testcase_03 AC 261 ms
50,144 KB
testcase_04 AC 264 ms
50,140 KB
testcase_05 AC 262 ms
50,044 KB
testcase_06 AC 270 ms
50,140 KB
testcase_07 AC 259 ms
50,032 KB
testcase_08 AC 266 ms
50,240 KB
testcase_09 AC 264 ms
50,128 KB
testcase_10 AC 266 ms
50,124 KB
testcase_11 AC 261 ms
50,140 KB
testcase_12 AC 264 ms
50,052 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