結果

問題 No.38 赤青白ブロック
ユーザー yuki2006yuki2006
提出日時 2014-10-12 23:47:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,110 ms / 5,000 ms
コード長 1,929 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 83,828 KB
実行使用メモリ 48,032 KB
最終ジャッジ日時 2024-06-06 01:56:43
合計ジャッジ時間 29,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 959 ms
48,032 KB
testcase_01 AC 918 ms
47,192 KB
testcase_02 AC 902 ms
47,828 KB
testcase_03 AC 959 ms
46,944 KB
testcase_04 AC 872 ms
47,712 KB
testcase_05 AC 866 ms
47,616 KB
testcase_06 AC 804 ms
47,048 KB
testcase_07 AC 830 ms
47,772 KB
testcase_08 AC 972 ms
47,520 KB
testcase_09 AC 876 ms
47,952 KB
testcase_10 AC 963 ms
47,332 KB
testcase_11 AC 949 ms
47,788 KB
testcase_12 AC 891 ms
47,816 KB
testcase_13 AC 1,004 ms
47,416 KB
testcase_14 AC 855 ms
47,004 KB
testcase_15 AC 970 ms
47,944 KB
testcase_16 AC 807 ms
47,040 KB
testcase_17 AC 802 ms
47,768 KB
testcase_18 AC 1,110 ms
47,820 KB
testcase_19 AC 879 ms
47,640 KB
testcase_20 AC 814 ms
47,776 KB
testcase_21 AC 850 ms
47,716 KB
testcase_22 AC 913 ms
47,872 KB
testcase_23 AC 972 ms
47,816 KB
testcase_24 AC 796 ms
47,612 KB
testcase_25 AC 916 ms
47,820 KB
testcase_26 AC 817 ms
47,640 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