結果

問題 No.1053 ゲーミング棒
ユーザー rutilicusrutilicus
提出日時 2020-10-16 09:27:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 1,169 bytes
コンパイル時間 14,543 ms
コンパイル使用メモリ 434,956 KB
実行使用メモリ 67,156 KB
最終ジャッジ日時 2024-07-20 20:22:02
合計ジャッジ時間 26,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
51,672 KB
testcase_01 AC 277 ms
51,684 KB
testcase_02 AC 273 ms
51,604 KB
testcase_03 AC 278 ms
51,660 KB
testcase_04 AC 272 ms
51,636 KB
testcase_05 AC 280 ms
51,648 KB
testcase_06 AC 275 ms
51,536 KB
testcase_07 AC 276 ms
51,548 KB
testcase_08 AC 270 ms
51,572 KB
testcase_09 AC 274 ms
51,608 KB
testcase_10 AC 282 ms
51,560 KB
testcase_11 AC 270 ms
51,708 KB
testcase_12 AC 280 ms
51,676 KB
testcase_13 AC 272 ms
51,784 KB
testcase_14 AC 294 ms
51,604 KB
testcase_15 AC 302 ms
51,636 KB
testcase_16 AC 306 ms
51,612 KB
testcase_17 AC 278 ms
51,620 KB
testcase_18 AC 266 ms
51,744 KB
testcase_19 AC 267 ms
51,568 KB
testcase_20 AC 269 ms
51,500 KB
testcase_21 AC 270 ms
51,732 KB
testcase_22 AC 273 ms
51,572 KB
testcase_23 AC 456 ms
67,056 KB
testcase_24 AC 450 ms
67,016 KB
testcase_25 AC 455 ms
67,156 KB
testcase_26 AC 457 ms
67,020 KB
testcase_27 AC 268 ms
51,656 KB
testcase_28 AC 275 ms
51,532 KB
testcase_29 AC 274 ms
51,624 KB
testcase_30 AC 434 ms
61,652 KB
testcase_31 AC 459 ms
61,524 KB
testcase_32 AC 433 ms
61,844 KB
testcase_33 AC 419 ms
61,824 KB
testcase_34 AC 434 ms
61,760 KB
testcase_35 AC 429 ms
63,080 KB
testcase_36 AC 427 ms
63,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:49:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    // 解説読んだ
    // 問題のシチュは環とみなせるっぽい
    // 異なる数字がある場合、左右端がその数字の場合のみ1回移動で連続とみなせる

    val n = readInputLine().toInt()

    val list = mutableListOf<Int>()

    var prev = -1

    readInputLine().split(" ").map {
        (it.toInt() - 1).apply {
            if (this != prev) {
                if (prev != -1) {
                    list.add(prev)
                }
                prev = this
            }
        }
    }

    list.add(prev)

    val cnt = IntArray(n)

    var ans = 0

    check@ for (l in list) {
        when(cnt[l]) {
            0 -> cnt[l]++
            1 -> {
                if (list.first() != l || list.last() != l) {
                    ans = -1
                    break@check
                }
                cnt[l]++
                ans = 1
            }
            else -> {
                ans = -1
                break@check
            }
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0