結果

問題 No.2042 RGB Caps
ユーザー 箱星箱星
提出日時 2022-04-24 23:04:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 13,489 ms
コンパイル使用メモリ 437,828 KB
実行使用メモリ 85,828 KB
最終ジャッジ日時 2024-11-16 01:51:57
合計ジャッジ時間 20,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
60,248 KB
testcase_01 AC 302 ms
60,176 KB
testcase_02 AC 305 ms
60,348 KB
testcase_03 AC 306 ms
60,228 KB
testcase_04 AC 305 ms
60,284 KB
testcase_05 AC 306 ms
60,116 KB
testcase_06 AC 383 ms
65,084 KB
testcase_07 AC 504 ms
70,920 KB
testcase_08 AC 550 ms
81,236 KB
testcase_09 AC 470 ms
66,692 KB
testcase_10 AC 596 ms
85,828 KB
testcase_11 AC 464 ms
64,336 KB
testcase_12 AC 558 ms
81,968 KB
testcase_13 AC 581 ms
81,988 KB
testcase_14 AC 562 ms
82,036 KB
testcase_15 AC 317 ms
60,192 KB
testcase_16 AC 523 ms
70,864 KB
testcase_17 AC 473 ms
64,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, k) = readInts()
    val arr = CharArray(n) { 'R' }
    for (i in 0 until k) {
        val data = readln().split(" ")
        val a = data[0].toInt()
        val c = data[1][0]
        arr[a - 1] = c
    }
    val ans = CharArray(n) { '.' }
    for (i in 0 until n) {
        val c = arr[i]
        if (i % 3 == 0) {
            ans[i] = c
        } else if (i % 3 == 1) {
            if (ans[i - 1] == c) {
                ans[i] = if (c == 'R') 'G' else 'R'
            } else {
                ans[i] = c
            }
        } else {
            val lst = mutableListOf('R', 'G', 'B')
            lst.remove(ans[i - 1])
            lst.remove(ans[i - 2])
            ans[i] = lst[0]
        }
    }
    println(ans.joinToString(""))
}

fun readInts() = readln().split(" ").map { it.toInt() }
0