結果

問題 No.1053 ゲーミング棒
ユーザー rutilicusrutilicus
提出日時 2020-10-16 09:25:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 1,150 bytes
コンパイル時間 13,987 ms
コンパイル使用メモリ 436,936 KB
実行使用メモリ 67,096 KB
最終ジャッジ日時 2024-07-20 20:21:30
合計ジャッジ時間 30,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
51,560 KB
testcase_01 AC 318 ms
51,544 KB
testcase_02 AC 321 ms
51,556 KB
testcase_03 AC 323 ms
51,648 KB
testcase_04 AC 324 ms
51,592 KB
testcase_05 AC 349 ms
51,536 KB
testcase_06 AC 326 ms
51,648 KB
testcase_07 AC 325 ms
51,468 KB
testcase_08 AC 330 ms
51,552 KB
testcase_09 AC 326 ms
51,520 KB
testcase_10 AC 320 ms
51,576 KB
testcase_11 AC 322 ms
51,380 KB
testcase_12 AC 323 ms
51,524 KB
testcase_13 AC 319 ms
51,512 KB
testcase_14 AC 325 ms
51,540 KB
testcase_15 AC 321 ms
51,676 KB
testcase_16 AC 321 ms
51,660 KB
testcase_17 AC 321 ms
51,644 KB
testcase_18 AC 325 ms
51,396 KB
testcase_19 AC 321 ms
51,604 KB
testcase_20 AC 325 ms
51,708 KB
testcase_21 AC 324 ms
51,688 KB
testcase_22 AC 323 ms
51,476 KB
testcase_23 AC 560 ms
67,096 KB
testcase_24 AC 568 ms
66,912 KB
testcase_25 AC 536 ms
66,852 KB
testcase_26 AC 539 ms
67,072 KB
testcase_27 AC 318 ms
51,500 KB
testcase_28 AC 327 ms
51,384 KB
testcase_29 AC 330 ms
51,708 KB
testcase_30 AC 510 ms
61,604 KB
testcase_31 AC 504 ms
61,460 KB
testcase_32 AC 494 ms
61,668 KB
testcase_33 AC 498 ms
61,620 KB
testcase_34 AC 496 ms
61,692 KB
testcase_35 AC 509 ms
63,296 KB
testcase_36 AC 512 ms
63,116 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

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

    builder.appendln(ans)

    print(builder.toString())
}

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