結果
問題 | No.38 赤青白ブロック |
ユーザー | yuki2006 |
提出日時 | 2014-10-12 23:34:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,925 bytes |
コンパイル時間 | 4,245 ms |
コンパイル使用メモリ | 77,332 KB |
実行使用メモリ | 48,612 KB |
最終ジャッジ日時 | 2024-06-09 15:59:03 |
合計ジャッジ時間 | 24,023 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 992 ms
48,612 KB |
testcase_01 | AC | 590 ms
46,760 KB |
testcase_02 | AC | 585 ms
47,716 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 848 ms
47,992 KB |
testcase_09 | WA | - |
testcase_10 | AC | 801 ms
48,208 KB |
testcase_11 | AC | 900 ms
47,896 KB |
testcase_12 | AC | 609 ms
47,784 KB |
testcase_13 | AC | 803 ms
47,980 KB |
testcase_14 | AC | 599 ms
47,616 KB |
testcase_15 | AC | 789 ms
46,888 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 723 ms
47,940 KB |
testcase_19 | AC | 614 ms
48,168 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 670 ms
48,020 KB |
testcase_24 | WA | - |
testcase_25 | AC | 667 ms
47,832 KB |
testcase_26 | WA | - |
ソースコード
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; } } StringBuilder t = new StringBuilder(); for (int i = mask; i < (1 << N); i = (i + 1) | mask) { t.delete(0, t.length() + 1); for (int j = 0; j < N; j++) { if (s.charAt(j) == 'W' || (((1 << j) & i) > 0)) { t.append(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 (s.charAt(j) == c[0]) { if (j >= c[1]) { if (t.charAt(j - c[1]) == c[0]) { hit = true; break LOOP; } } 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); } }