結果
問題 | No.38 赤青白ブロック |
ユーザー | kou6839 |
提出日時 | 2014-12-04 15:13:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 418 ms / 5,000 ms |
コード長 | 1,078 bytes |
コンパイル時間 | 2,273 ms |
コンパイル使用メモリ | 77,440 KB |
実行使用メモリ | 47,036 KB |
最終ジャッジ日時 | 2024-06-06 01:57:49 |
合計ジャッジ時間 | 8,164 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 156 ms
42,160 KB |
testcase_01 | AC | 291 ms
46,364 KB |
testcase_02 | AC | 140 ms
41,840 KB |
testcase_03 | AC | 165 ms
42,156 KB |
testcase_04 | AC | 202 ms
42,432 KB |
testcase_05 | AC | 143 ms
41,668 KB |
testcase_06 | AC | 294 ms
46,444 KB |
testcase_07 | AC | 245 ms
46,024 KB |
testcase_08 | AC | 131 ms
41,372 KB |
testcase_09 | AC | 272 ms
46,192 KB |
testcase_10 | AC | 130 ms
41,040 KB |
testcase_11 | AC | 137 ms
41,424 KB |
testcase_12 | AC | 118 ms
40,388 KB |
testcase_13 | AC | 128 ms
41,120 KB |
testcase_14 | AC | 130 ms
41,632 KB |
testcase_15 | AC | 141 ms
41,356 KB |
testcase_16 | AC | 418 ms
47,036 KB |
testcase_17 | AC | 216 ms
44,496 KB |
testcase_18 | AC | 157 ms
42,316 KB |
testcase_19 | AC | 191 ms
42,944 KB |
testcase_20 | AC | 206 ms
43,860 KB |
testcase_21 | AC | 145 ms
42,524 KB |
testcase_22 | AC | 262 ms
45,516 KB |
testcase_23 | AC | 129 ms
41,180 KB |
testcase_24 | AC | 372 ms
46,748 KB |
testcase_25 | AC | 170 ms
42,376 KB |
testcase_26 | AC | 164 ms
42,168 KB |
ソースコード
import java.math.*; import java.util.*; public class Main { static boolean check(int ka,int kb,StringBuffer test){ for(int i=0;i<test.length();i++){ if(test.charAt(i)=='R'){ if(i+ka<test.length() && test.charAt(i+ka)=='R') return false; }else if(test.charAt(i)=='B'){ if(i+kb<test.length() && test.charAt(i+kb)=='B')return false; } } return true; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int ka = sc.nextInt(); int kb = sc.nextInt(); String ss=sc.next(); int[] block = new int[20]; int temp=0; for(int i=29;i>=0;i--){ if(ss.charAt(i)=='R' || ss.charAt(i)=='B' ){ block[temp]=i; temp++; } } int ans=Integer.MAX_VALUE; for(int i=0;i< (1<<21) ;i++){ if(Integer.bitCount(i)>=ans) continue; StringBuffer test = new StringBuffer(ss); for(int j=0;j<20;j++){ if( ( (i>>j) &1) ==1 ){ test.deleteCharAt(block[j]); } } if(check(ka,kb,test)){ ans=Integer.bitCount(i); } } System.out.println(30-ans); } }