結果

問題 No.481 1から10
ユーザー uchida_tuchida_t
提出日時 2023-05-30 13:12:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 10,470 ms
コンパイル使用メモリ 437,836 KB
実行使用メモリ 51,852 KB
最終ジャッジ日時 2024-06-08 20:07:37
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
51,776 KB
testcase_01 AC 258 ms
51,852 KB
testcase_02 AC 260 ms
51,512 KB
testcase_03 AC 261 ms
51,572 KB
testcase_04 AC 263 ms
51,520 KB
testcase_05 AC 259 ms
51,500 KB
testcase_06 AC 260 ms
51,632 KB
testcase_07 AC 258 ms
51,468 KB
testcase_08 AC 255 ms
51,784 KB
testcase_09 AC 257 ms
51,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {

    val list = readLine()!!.split(" ").map { it.toInt() }


    for (i in 0 until 10) {
        if (i == 9) {
            println(10)
            break
        }
        if (list[i] != i + 1) {
            println(i + 1)
            break
        }
    }
}
0