結果

問題 No.38 赤青白ブロック
ユーザー mbanmban
提出日時 2017-07-26 05:00:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 485 ms / 5,000 ms
コード長 1,493 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 105,856 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-06 02:24:00
合計ジャッジ時間 10,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
22,016 KB
testcase_01 AC 269 ms
21,760 KB
testcase_02 AC 188 ms
22,016 KB
testcase_03 AC 361 ms
21,888 KB
testcase_04 AC 485 ms
21,888 KB
testcase_05 AC 344 ms
21,760 KB
testcase_06 AC 178 ms
21,760 KB
testcase_07 AC 189 ms
22,016 KB
testcase_08 AC 235 ms
21,760 KB
testcase_09 AC 201 ms
21,888 KB
testcase_10 AC 327 ms
21,888 KB
testcase_11 AC 315 ms
22,016 KB
testcase_12 AC 352 ms
21,888 KB
testcase_13 AC 475 ms
21,888 KB
testcase_14 AC 279 ms
21,888 KB
testcase_15 AC 247 ms
21,888 KB
testcase_16 AC 192 ms
21,888 KB
testcase_17 AC 263 ms
21,888 KB
testcase_18 AC 263 ms
21,760 KB
testcase_19 AC 290 ms
21,760 KB
testcase_20 AC 301 ms
21,888 KB
testcase_21 AC 192 ms
21,888 KB
testcase_22 AC 256 ms
21,760 KB
testcase_23 AC 399 ms
21,888 KB
testcase_24 AC 278 ms
21,632 KB
testcase_25 AC 261 ms
21,760 KB
testcase_26 AC 221 ms
21,888 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 System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main()
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int Kr, Kb;
    private string S;
    private int ans = 0;
    private const int Length = 30;
    private bool[] Use = new bool[Length];

    private void Scan()
    {
        var line = Console.ReadLine().Split(' ');
        Kr = int.Parse(line[0]);
        Kb = int.Parse(line[1]);
        S = Console.ReadLine();
    }

    private void DFS(int n, string s)
    {
        if (n == Length)
        {
            for (int i = 0; i < s.Length; i++)
            {
                if (s[i] == 'R' && i - Kr >= 0)
                {
                    if(s[i] == s[i - Kr])
                    {
                        return;
                    }
                }
                else if (s[i] == 'B' && i - Kb >= 0)
                {
                    if(s[i] == s[i - Kb])
                    {
                        return;
                    }
                }
            }
            ans = Math.Max(ans, s.Length);
            return;
        }
        if (S[n] != 'W')
        {
            DFS(n + 1, s);
        }
        DFS(n + 1, s + S[n]);
    }

    public void Solve()
    {
        Scan();
        DFS(0, "");
        Console.WriteLine(ans);
    }
}
0