結果

問題 No.38 赤青白ブロック
ユーザー ぴろずぴろず
提出日時 2015-02-15 14:59:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 758 ms / 5,000 ms
コード長 1,169 bytes
コンパイル時間 2,713 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 49,244 KB
最終ジャッジ日時 2024-12-23 12:42:25
合計ジャッジ時間 20,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
48,972 KB
testcase_01 AC 715 ms
48,964 KB
testcase_02 AC 616 ms
48,420 KB
testcase_03 AC 758 ms
48,904 KB
testcase_04 AC 630 ms
49,016 KB
testcase_05 AC 574 ms
48,696 KB
testcase_06 AC 636 ms
48,804 KB
testcase_07 AC 627 ms
48,884 KB
testcase_08 AC 626 ms
48,096 KB
testcase_09 AC 624 ms
48,408 KB
testcase_10 AC 620 ms
48,608 KB
testcase_11 AC 629 ms
48,936 KB
testcase_12 AC 631 ms
48,780 KB
testcase_13 AC 589 ms
48,528 KB
testcase_14 AC 610 ms
48,696 KB
testcase_15 AC 605 ms
48,300 KB
testcase_16 AC 690 ms
48,808 KB
testcase_17 AC 562 ms
48,356 KB
testcase_18 AC 587 ms
48,772 KB
testcase_19 AC 605 ms
48,472 KB
testcase_20 AC 624 ms
49,244 KB
testcase_21 AC 618 ms
48,968 KB
testcase_22 AC 619 ms
48,824 KB
testcase_23 AC 601 ms
48,524 KB
testcase_24 AC 652 ms
48,724 KB
testcase_25 AC 606 ms
48,656 KB
testcase_26 AC 579 ms
48,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no038;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int kr = sc.nextInt();
		int kb = sc.nextInt();
		char[] s = sc.next().toCharArray();
		int n = 30;
		int nr = 10, nb = 10;
		int ans = 0;
		for(int i=0;i<1<<nr;i++) {
			for(int j=0;j<1<<nb;j++) {
				StringBuilder sb = new StringBuilder();
				int r = 0, b = 0;
				for(int k=0;k<n;k++) {
					if (s[k] == 'R') {
						if ((i>>r&1) == 0) {
							sb.append(s[k]);
						}
						r++;
					}else if (s[k] == 'B') {
						if ((j>>b&1) == 0) {
							sb.append(s[k]);
						}
						b++;
					}else if(s[k] == 'W') {
						sb.append(s[k]);
					}
				}
				String t = sb.toString();
				if (isValidString(t, kr, kb)) {
					ans = Math.max(ans,t.length());
				}
			}
		}
		System.out.println(ans);
	}

	public static boolean isValidString(String t,int kr,int kb) {
		char[] s = t.toCharArray();
		int n = s.length;
		for(int i=0;i<n-kr;i++) {
			if (s[i] == 'R' && s[i+kr] == 'R') {
				return false;
			}
		}
		for(int i=0;i<n-kb;i++) {
			if (s[i] == 'B' && s[i+kb] == 'B') {
				return false;
			}
		}
		return true;
	}
}
0