結果

問題 No.2042 RGB Caps
ユーザー 箱星箱星
提出日時 2022-02-23 20:11:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 686 ms / 2,000 ms
コード長 1,799 bytes
コンパイル時間 14,667 ms
コンパイル使用メモリ 447,320 KB
実行使用メモリ 97,124 KB
最終ジャッジ日時 2024-11-16 01:51:27
合計ジャッジ時間 24,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
62,168 KB
testcase_01 AC 295 ms
62,048 KB
testcase_02 AC 286 ms
61,948 KB
testcase_03 AC 296 ms
62,280 KB
testcase_04 AC 281 ms
62,220 KB
testcase_05 AC 294 ms
62,092 KB
testcase_06 AC 395 ms
68,704 KB
testcase_07 AC 514 ms
75,564 KB
testcase_08 AC 568 ms
85,972 KB
testcase_09 AC 454 ms
69,548 KB
testcase_10 AC 649 ms
96,988 KB
testcase_11 AC 470 ms
67,532 KB
testcase_12 AC 676 ms
96,944 KB
testcase_13 AC 686 ms
97,100 KB
testcase_14 AC 651 ms
97,124 KB
testcase_15 AC 294 ms
62,212 KB
testcase_16 AC 502 ms
73,564 KB
testcase_17 AC 442 ms
67,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val k = nextInt()
    val map = mutableMapOf<Int, Char>()
    for (i in 0 until k) {
        val a = nextInt()
        val c = next()
        map[a - 1] = c[0]
    }
    val ans = CharArray(n) { '.' }
    for (i in 0 until n) {
        if (i % 3 == 0) {
            if (map.containsKey(i)) {
                val c = map[i]!!
                ans[i] = c
            } else {
                ans[i] = 'R'
            }
        } else if (i % 3 == 1) {
            if (map.containsKey((i))) {
                val c = map[i]!!
                if (ans[i - 1] == c) {
                    ans[i] = if (c == 'R') 'G' else 'R'
                } else {
                    ans[i] = c
                }
            } else {
                ans[i] = if (ans[i - 1] == 'R') 'G' else 'R'
            }
        } 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 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