結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー 箱星箱星
提出日時 2022-09-16 22:31:27
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 1,697 bytes
コンパイル時間 15,372 ms
コンパイル使用メモリ 442,760 KB
実行使用メモリ 65,356 KB
最終ジャッジ日時 2024-12-21 21:47:08
合計ジャッジ時間 37,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
51,516 KB
testcase_01 AC 306 ms
51,468 KB
testcase_02 AC 307 ms
51,504 KB
testcase_03 AC 306 ms
51,608 KB
testcase_04 AC 313 ms
51,488 KB
testcase_05 AC 576 ms
65,188 KB
testcase_06 AC 572 ms
65,208 KB
testcase_07 AC 302 ms
51,588 KB
testcase_08 AC 566 ms
61,164 KB
testcase_09 AC 560 ms
61,248 KB
testcase_10 AC 574 ms
65,296 KB
testcase_11 AC 575 ms
65,356 KB
testcase_12 AC 306 ms
51,416 KB
testcase_13 AC 378 ms
53,764 KB
testcase_14 AC 567 ms
64,316 KB
testcase_15 AC 547 ms
57,524 KB
testcase_16 AC 553 ms
65,276 KB
testcase_17 AC 306 ms
51,528 KB
testcase_18 AC 370 ms
53,992 KB
testcase_19 AC 555 ms
65,344 KB
testcase_20 AC 556 ms
61,284 KB
testcase_21 AC 545 ms
61,232 KB
testcase_22 AC 553 ms
65,056 KB
testcase_23 AC 307 ms
51,400 KB
testcase_24 AC 320 ms
51,668 KB
testcase_25 AC 557 ms
61,268 KB
testcase_26 AC 565 ms
65,292 KB
testcase_27 AC 307 ms
51,644 KB
testcase_28 AC 555 ms
64,024 KB
testcase_29 AC 544 ms
57,516 KB
testcase_30 AC 569 ms
61,304 KB
testcase_31 AC 529 ms
57,392 KB
testcase_32 AC 403 ms
54,644 KB
testcase_33 AC 474 ms
56,108 KB
testcase_34 AC 407 ms
54,660 KB
testcase_35 AC 604 ms
59,540 KB
testcase_36 AC 475 ms
55,960 KB
testcase_37 AC 571 ms
59,376 KB
testcase_38 AC 410 ms
54,716 KB
testcase_39 AC 602 ms
61,448 KB
testcase_40 AC 568 ms
59,224 KB
testcase_41 AC 610 ms
61,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val s = nextLine()
    val s0 = (0 until n).map { s[3 * it] }
    val s1 = (0 until n).map { s[3 * it + 1] }
    val s2 = (0 until n).map { s[3 * it + 2] }
    val c0 = s0.count { it == 'c' }
    val c1 = s1.count { it == 'c' }
    val c2 = s2.count { it == 'c' }
    val o0 = s0.count { it == 'o' }
    val o1 = s1.count { it == 'o' }
    val o2 = s2.count { it == 'o' }
    val n0 = s0.count { it == 'n' }
    val n1 = s1.count { it == 'n' }
    val n2 = s2.count { it == 'n' }
    val x0 = n - c0 - o0 - n0
    val x1 = n - c1 - o1 - n1
    val x2 = n - c2 - o2 - n2
    val con0 = minOf(c0, o1, n2)
    val con1 = minOf(c1, o2, n0)
    val con2 = minOf(c2, o0, n1)
    val con = con0 + con1 + con2
    if (x0 == 0 && x1 == 0 && x2 == 0 && con == n) {
        if (con0 == n) {
            println(con)
        } else {
            println(con - 1)
        }
    } else {
        println(con)
    }
}

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