結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー 箱星箱星
提出日時 2020-12-09 17:01:45
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,085 bytes
コンパイル時間 12,618 ms
コンパイル使用メモリ 435,156 KB
実行使用メモリ 86,544 KB
最終ジャッジ日時 2024-09-21 13:56:52
合計ジャッジ時間 27,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
53,844 KB
testcase_01 AC 300 ms
86,544 KB
testcase_02 AC 297 ms
50,304 KB
testcase_03 AC 296 ms
50,576 KB
testcase_04 AC 295 ms
50,548 KB
testcase_05 AC 302 ms
50,192 KB
testcase_06 AC 298 ms
50,404 KB
testcase_07 AC 300 ms
50,372 KB
testcase_08 AC 298 ms
50,372 KB
testcase_09 AC 309 ms
50,292 KB
testcase_10 AC 299 ms
50,456 KB
testcase_11 AC 300 ms
50,200 KB
testcase_12 AC 298 ms
50,268 KB
testcase_13 AC 302 ms
50,308 KB
testcase_14 AC 298 ms
50,184 KB
testcase_15 AC 299 ms
50,372 KB
testcase_16 AC 298 ms
50,164 KB
testcase_17 AC 301 ms
50,184 KB
testcase_18 AC 318 ms
50,500 KB
testcase_19 AC 294 ms
50,360 KB
testcase_20 AC 302 ms
50,160 KB
testcase_21 AC 296 ms
50,180 KB
testcase_22 AC 544 ms
68,276 KB
testcase_23 AC 444 ms
55,328 KB
testcase_24 AC 474 ms
54,788 KB
testcase_25 AC 520 ms
69,004 KB
testcase_26 AC 498 ms
71,700 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    if (isSorted(a)) {
        println(0)
        return
    }
    for (i in 1..n) {
        for (j in 1 until i) {
            val b = a.copyOf()
            for (k in 0 until i) {
                b[k] = a[(j + k) % i]
            }
            if (isSorted(b)) {
                println(1)
                return
            }
        }
    }
    println(2)
}

fun isSorted(a: Array<Int>): Boolean {
    return (0 until a.count() - 1).all { a[it] <= a[it + 1] }
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0