結果

問題 No.481 1から10
ユーザー uchida_tuchida_t
提出日時 2023-05-30 12:56:53
言語 Kotlin
(2.1.0)
結果
RE  
実行時間 -
コード長 216 bytes
コンパイル時間 13,985 ms
コンパイル使用メモリ 430,048 KB
実行使用メモリ 51,936 KB
最終ジャッジ日時 2024-12-28 11:44:05
合計ジャッジ時間 17,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
51,712 KB
testcase_01 AC 312 ms
51,828 KB
testcase_02 AC 316 ms
51,716 KB
testcase_03 AC 312 ms
51,620 KB
testcase_04 AC 312 ms
51,712 KB
testcase_05 AC 309 ms
51,500 KB
testcase_06 AC 317 ms
51,600 KB
testcase_07 AC 312 ms
51,704 KB
testcase_08 AC 314 ms
51,588 KB
testcase_09 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 (list[i] != i + 1) {
            println(i + 1)
            return
        }
    }
}
0