結果

問題 No.2210 equence Squence Seuence
ユーザー 箱星箱星
提出日時 2023-02-10 21:45:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 1,310 bytes
コンパイル時間 14,185 ms
コンパイル使用メモリ 438,320 KB
実行使用メモリ 91,196 KB
最終ジャッジ日時 2024-07-07 15:58:27
合計ジャッジ時間 27,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
55,328 KB
testcase_01 AC 295 ms
55,428 KB
testcase_02 AC 292 ms
55,260 KB
testcase_03 AC 488 ms
62,812 KB
testcase_04 AC 541 ms
64,268 KB
testcase_05 AC 507 ms
69,064 KB
testcase_06 AC 545 ms
66,616 KB
testcase_07 AC 655 ms
86,012 KB
testcase_08 AC 304 ms
55,348 KB
testcase_09 AC 295 ms
55,388 KB
testcase_10 AC 291 ms
55,448 KB
testcase_11 AC 292 ms
55,448 KB
testcase_12 AC 294 ms
55,332 KB
testcase_13 AC 664 ms
91,196 KB
testcase_14 AC 601 ms
89,536 KB
testcase_15 AC 667 ms
90,112 KB
testcase_16 AC 594 ms
89,312 KB
testcase_17 AC 576 ms
89,200 KB
testcase_18 AC 307 ms
55,348 KB
testcase_19 AC 295 ms
55,376 KB
testcase_20 AC 291 ms
55,232 KB
testcase_21 AC 294 ms
55,288 KB
testcase_22 AC 287 ms
55,288 KB
testcase_23 AC 570 ms
87,372 KB
testcase_24 AC 568 ms
77,732 KB
testcase_25 AC 577 ms
80,848 KB
testcase_26 AC 587 ms
89,628 KB
testcase_27 AC 484 ms
66,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val k = nextInt()
    val a = Array(n) { nextInt() }
    var l = 1
    var r = n
    var ans = 0
    var carry = 1
    for (i in 0 until n - 1) {
        if (a[i] < a[i + 1]) {
            r -= carry
            carry = 1
            if (k > r) break
        } else if (a[i] > a[i + 1]) {

            l += carry
            carry = 1
            if (l > k) break
        } else {
            carry++
        }
        ans++
    }
    val b = a.toMutableList()
    b.removeAt(ans)
    println(b.joinToString(" "))
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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