結果
問題 | No.38 赤青白ブロック |
ユーザー | yuki2006 |
提出日時 | 2014-10-12 23:33:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,919 bytes |
コンパイル時間 | 3,758 ms |
コンパイル使用メモリ | 78,320 KB |
実行使用メモリ | 61,320 KB |
最終ジャッジ日時 | 2024-06-09 15:56:27 |
合計ジャッジ時間 | 23,616 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 692 ms
59,136 KB |
testcase_01 | AC | 564 ms
58,924 KB |
testcase_02 | AC | 583 ms
58,984 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 824 ms
58,840 KB |
testcase_09 | WA | - |
testcase_10 | AC | 656 ms
58,672 KB |
testcase_11 | AC | 825 ms
59,116 KB |
testcase_12 | AC | 627 ms
59,176 KB |
testcase_13 | AC | 793 ms
59,448 KB |
testcase_14 | AC | 574 ms
59,052 KB |
testcase_15 | AC | 807 ms
59,404 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 775 ms
58,652 KB |
testcase_19 | AC | 565 ms
58,872 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 705 ms
58,484 KB |
testcase_24 | WA | - |
testcase_25 | AC | 585 ms
57,892 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()); 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); } }