結果

問題 No.2042 RGB Caps
ユーザー kakel-sankakel-san
提出日時 2022-08-19 21:49:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 2,480 bytes
コンパイル時間 5,129 ms
コンパイル使用メモリ 113,844 KB
実行使用メモリ 31,304 KB
最終ジャッジ日時 2024-11-16 01:55:45
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,040 KB
testcase_01 AC 32 ms
25,140 KB
testcase_02 AC 31 ms
27,116 KB
testcase_03 AC 30 ms
22,964 KB
testcase_04 AC 30 ms
25,292 KB
testcase_05 AC 31 ms
25,260 KB
testcase_06 AC 42 ms
29,536 KB
testcase_07 AC 55 ms
29,472 KB
testcase_08 AC 77 ms
31,304 KB
testcase_09 AC 40 ms
27,052 KB
testcase_10 AC 99 ms
31,176 KB
testcase_11 AC 37 ms
27,364 KB
testcase_12 AC 106 ms
29,264 KB
testcase_13 AC 106 ms
29,392 KB
testcase_14 AC 105 ms
29,264 KB
testcase_15 AC 31 ms
25,060 KB
testcase_16 AC 52 ms
29,200 KB
testcase_17 AC 37 ms
27,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        var list = new char[n];
        for (var _ = 0; _ < k; ++_)
        {
            var s = ReadLine().Split();
            list[int.Parse(s[0]) - 1] = s[1][0];
        }
        var res = new char[n];
        var x = new string[] { "RGB", "RBG", "GBR", "GRB", "BRG", "BGR" };
        for (var i = 0; i < n; i += 3)
        {
            var info = list.Skip(i).Take(3).ToList();
            foreach (var xi in x)
            {
                if (Fit(info, xi))
                {
                    for (var j = 0; j < info.Count; ++j)
                    {
                        res[i + j] = xi[j];
                    }
                    break;
                }
            }
        }
        WriteLine(res);
    }
    static bool Fit(List<char> info, string x)
    {
        var r = false;
        var g = false;
        var b = false;
        if (info[0] == 'R')
        {
            if (x[0] != 'R') return false;
            r = true;
        }
        else if (info[0] == 'G')
        {
            if (x[0] != 'G') return false;
            g = true;
        }
        else if (info[0] == 'B')
        {
            if (x[0] != 'B') return false;
            b = true;
        }
        if (info.Count == 1) return true;
        if (info[1] == 'R')
        {
            if (!r && x[1] != 'R') return false;
            r = true;
        }
        else if (info[1] == 'G')
        {
            if (!g && x[1] != 'G') return false;
            g = true;
        }
        else if (info[1] == 'B')
        {
            if (!b && x[1] != 'B') return false;
            b = true;
        }
        if (info.Count == 2) return true;
        if (info[2] == 'R')
        {
            if (!r && x[2] != 'R') return false;
        }
        else if (info[2] == 'G')
        {
            if (!g && x[2] != 'G') return false;
        }
        else if (info[2] == 'B')
        {
            if (!b && x[2] != 'B') return false;
        }
        return true;
    }
}
0