結果
問題 | No.38 赤青白ブロック |
ユーザー | kou6839 |
提出日時 | 2014-12-04 15:13:48 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 368 ms / 5,000 ms |
コード長 | 1,078 bytes |
コンパイル時間 | 2,020 ms |
コンパイル使用メモリ | 77,716 KB |
実行使用メモリ | 47,236 KB |
最終ジャッジ日時 | 2024-12-23 12:40:20 |
合計ジャッジ時間 | 7,958 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
42,232 KB |
testcase_01 | AC | 303 ms
46,364 KB |
testcase_02 | AC | 151 ms
42,104 KB |
testcase_03 | AC | 150 ms
42,216 KB |
testcase_04 | AC | 169 ms
42,732 KB |
testcase_05 | AC | 145 ms
41,444 KB |
testcase_06 | AC | 292 ms
46,664 KB |
testcase_07 | AC | 234 ms
46,116 KB |
testcase_08 | AC | 117 ms
41,724 KB |
testcase_09 | AC | 248 ms
45,320 KB |
testcase_10 | AC | 126 ms
41,552 KB |
testcase_11 | AC | 129 ms
41,596 KB |
testcase_12 | AC | 139 ms
41,328 KB |
testcase_13 | AC | 134 ms
41,652 KB |
testcase_14 | AC | 117 ms
41,244 KB |
testcase_15 | AC | 138 ms
41,520 KB |
testcase_16 | AC | 368 ms
47,068 KB |
testcase_17 | AC | 213 ms
44,976 KB |
testcase_18 | AC | 153 ms
42,360 KB |
testcase_19 | AC | 181 ms
42,800 KB |
testcase_20 | AC | 203 ms
43,816 KB |
testcase_21 | AC | 156 ms
42,608 KB |
testcase_22 | AC | 258 ms
45,852 KB |
testcase_23 | AC | 124 ms
41,192 KB |
testcase_24 | AC | 318 ms
47,236 KB |
testcase_25 | AC | 166 ms
42,360 KB |
testcase_26 | AC | 167 ms
42,684 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); } }