結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
48,612 KB
testcase_01 AC 549 ms
48,600 KB
testcase_02 AC 481 ms
48,516 KB
testcase_03 AC 593 ms
49,144 KB
testcase_04 AC 501 ms
48,672 KB
testcase_05 AC 476 ms
48,700 KB
testcase_06 AC 505 ms
48,796 KB
testcase_07 AC 489 ms
48,652 KB
testcase_08 AC 452 ms
48,460 KB
testcase_09 AC 497 ms
48,460 KB
testcase_10 AC 496 ms
48,804 KB
testcase_11 AC 477 ms
48,840 KB
testcase_12 AC 490 ms
48,896 KB
testcase_13 AC 451 ms
48,440 KB
testcase_14 AC 500 ms
48,644 KB
testcase_15 AC 487 ms
48,392 KB
testcase_16 AC 527 ms
48,908 KB
testcase_17 AC 493 ms
48,420 KB
testcase_18 AC 486 ms
48,860 KB
testcase_19 AC 467 ms
48,532 KB
testcase_20 AC 497 ms
48,888 KB
testcase_21 AC 456 ms
48,636 KB
testcase_22 AC 502 ms
48,700 KB
testcase_23 AC 482 ms
48,768 KB
testcase_24 AC 525 ms
48,688 KB
testcase_25 AC 484 ms
48,964 KB
testcase_26 AC 456 ms
48,448 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