結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー 箱星箱星
提出日時 2022-09-16 22:31:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 1,697 bytes
コンパイル時間 14,852 ms
コンパイル使用メモリ 446,732 KB
実行使用メモリ 72,056 KB
最終ジャッジ日時 2024-06-01 13:34:56
合計ジャッジ時間 36,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
58,988 KB
testcase_01 AC 312 ms
59,080 KB
testcase_02 AC 312 ms
59,052 KB
testcase_03 AC 312 ms
59,008 KB
testcase_04 AC 316 ms
59,100 KB
testcase_05 AC 579 ms
72,056 KB
testcase_06 AC 579 ms
65,568 KB
testcase_07 AC 311 ms
51,596 KB
testcase_08 AC 572 ms
61,448 KB
testcase_09 AC 579 ms
61,332 KB
testcase_10 AC 588 ms
65,384 KB
testcase_11 AC 590 ms
65,520 KB
testcase_12 AC 313 ms
51,500 KB
testcase_13 AC 381 ms
54,228 KB
testcase_14 AC 580 ms
64,304 KB
testcase_15 AC 546 ms
57,512 KB
testcase_16 AC 568 ms
65,492 KB
testcase_17 AC 311 ms
51,500 KB
testcase_18 AC 381 ms
54,056 KB
testcase_19 AC 565 ms
65,436 KB
testcase_20 AC 565 ms
61,200 KB
testcase_21 AC 561 ms
61,136 KB
testcase_22 AC 565 ms
65,360 KB
testcase_23 AC 314 ms
51,616 KB
testcase_24 AC 325 ms
51,684 KB
testcase_25 AC 557 ms
61,500 KB
testcase_26 AC 564 ms
65,324 KB
testcase_27 AC 312 ms
51,732 KB
testcase_28 AC 561 ms
64,180 KB
testcase_29 AC 526 ms
57,648 KB
testcase_30 AC 600 ms
61,520 KB
testcase_31 AC 531 ms
57,324 KB
testcase_32 AC 411 ms
54,920 KB
testcase_33 AC 484 ms
56,092 KB
testcase_34 AC 419 ms
54,872 KB
testcase_35 AC 613 ms
59,584 KB
testcase_36 AC 477 ms
56,200 KB
testcase_37 AC 576 ms
59,292 KB
testcase_38 AC 424 ms
54,928 KB
testcase_39 AC 626 ms
61,520 KB
testcase_40 AC 561 ms
59,360 KB
testcase_41 AC 622 ms
61,532 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