結果

問題 No.1707 Simple Range Reverse Problem
ユーザー 箱星箱星
提出日時 2021-08-08 00:41:52
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 1,305 bytes
コンパイル時間 13,322 ms
コンパイル使用メモリ 440,984 KB
実行使用メモリ 58,884 KB
最終ジャッジ日時 2024-09-17 17:00:39
合計ジャッジ時間 20,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
49,992 KB
testcase_01 AC 316 ms
50,316 KB
testcase_02 AC 304 ms
50,236 KB
testcase_03 AC 300 ms
49,924 KB
testcase_04 AC 376 ms
57,172 KB
testcase_05 AC 386 ms
57,084 KB
testcase_06 AC 304 ms
50,260 KB
testcase_07 AC 308 ms
50,360 KB
testcase_08 AC 310 ms
50,028 KB
testcase_09 AC 358 ms
53,376 KB
testcase_10 AC 351 ms
53,544 KB
testcase_11 AC 321 ms
51,236 KB
testcase_12 AC 347 ms
54,884 KB
testcase_13 AC 359 ms
56,488 KB
testcase_14 AC 333 ms
55,700 KB
testcase_15 AC 352 ms
58,820 KB
testcase_16 AC 353 ms
57,480 KB
testcase_17 AC 327 ms
55,972 KB
testcase_18 AC 357 ms
58,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextInt()
        val a = Array(2 * n) { nextInt() }
        val x = Array(2 * n) { if (it < n) it + 1 else it - n + 1 }
        if (a.contentEquals(x)) {
            println("Yes")
            continue@case
        }
        for (i in 0 until n) {
            val b = Array(2 * n) { 0 }
            for (j in 0 until 2 * n) {
                if (j <= i || j >= i + n) {
                    b[j] = x[j]
                } else {
                    b[j] = x[2 * i + n - j]
                }
            }
            if (a.contentEquals(b)) {
                println("Yes")
                continue@case
            }
        }
        println("No")
    }
}

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