結果

問題 No.38 赤青白ブロック
ユーザー yuki2006yuki2006
提出日時 2014-10-12 23:47:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,030 ms / 5,000 ms
コード長 1,929 bytes
コンパイル時間 3,242 ms
コンパイル使用メモリ 79,148 KB
実行使用メモリ 48,240 KB
最終ジャッジ日時 2024-12-23 12:39:07
合計ジャッジ時間 28,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 901 ms
47,816 KB
testcase_01 AC 856 ms
47,128 KB
testcase_02 AC 840 ms
47,376 KB
testcase_03 AC 917 ms
47,908 KB
testcase_04 AC 832 ms
48,024 KB
testcase_05 AC 930 ms
47,624 KB
testcase_06 AC 795 ms
47,864 KB
testcase_07 AC 797 ms
47,900 KB
testcase_08 AC 930 ms
47,592 KB
testcase_09 AC 829 ms
47,904 KB
testcase_10 AC 916 ms
47,348 KB
testcase_11 AC 974 ms
48,240 KB
testcase_12 AC 862 ms
47,928 KB
testcase_13 AC 961 ms
47,628 KB
testcase_14 AC 826 ms
47,936 KB
testcase_15 AC 939 ms
47,572 KB
testcase_16 AC 762 ms
47,012 KB
testcase_17 AC 791 ms
48,112 KB
testcase_18 AC 964 ms
47,996 KB
testcase_19 AC 842 ms
47,972 KB
testcase_20 AC 827 ms
47,876 KB
testcase_21 AC 778 ms
48,096 KB
testcase_22 AC 868 ms
47,552 KB
testcase_23 AC 1,030 ms
47,868 KB
testcase_24 AC 741 ms
47,340 KB
testcase_25 AC 870 ms
47,788 KB
testcase_26 AC 773 ms
47,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki038 {
    public static void main(String[] args) {
        Yuki038 hoge = new Yuki038();
    }

    Yuki038() {
        Scanner scanner = new Scanner(System.in);
        int kr = scanner.nextInt();
        int kb = scanner.nextInt();
        String s = scanner.next();
        int ans = 0;
        int N = s.length();
        int mask = 0;
        for (int i = 0; i < N; i++) {
            if (s.charAt(i) == 'W') {
                mask |= 1 << i;
            }
        }
        for (int i = mask; i < (1 << N); i = (i + 1) | mask) {
            String t = "";
            for (int j = 0; j < N; j++) {
                if (s.charAt(j) == 'W' || (((1 << j) & i) > 0)) {
                    t += (s.charAt(j));
                }
            }
            boolean hit = false;

            LOOP:
            for (int j = 0; j < t.length(); j++) {
                if (t.charAt(j) == 'W') {
                    continue;
                }

                for (int[] c : new int[][]{{'R', kr}, {'B', kb}}) {
                    if (t.charAt(j) == c[0]) {
                        if (j >= c[1]) {
                            if (t.charAt(j - c[1]) == c[0]) {
                                hit = true;
                                break LOOP;
                            }
                        }
                    }
                    if (t.charAt(j) == c[1]) {
                        if (j + c[1] < t.length()) {
                            if (t.charAt(j + c[1]) == c[0]) {
                                hit = true;
                                break LOOP;
                            }
                        }
                    }
                }
            }
            if (!hit) {
                ans = Math.max(ans, t.length());
            }

        }
        System.out.println(ans);

    }

}
0