結果
問題 | No.436 ccw |
ユーザー | fjafjafja |
提出日時 | 2017-09-10 23:47:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 1,236 bytes |
コンパイル時間 | 3,227 ms |
コンパイル使用メモリ | 76,020 KB |
実行使用メモリ | 43,176 KB |
最終ジャッジ日時 | 2024-11-07 12:54:19 |
合計ジャッジ時間 | 6,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,844 KB |
testcase_01 | AC | 49 ms
36,812 KB |
testcase_02 | AC | 50 ms
36,844 KB |
testcase_03 | AC | 51 ms
36,680 KB |
testcase_04 | AC | 50 ms
36,884 KB |
testcase_05 | AC | 49 ms
36,672 KB |
testcase_06 | AC | 49 ms
36,680 KB |
testcase_07 | AC | 48 ms
36,864 KB |
testcase_08 | AC | 48 ms
36,692 KB |
testcase_09 | AC | 50 ms
36,988 KB |
testcase_10 | AC | 49 ms
36,976 KB |
testcase_11 | AC | 48 ms
36,668 KB |
testcase_12 | AC | 49 ms
37,020 KB |
testcase_13 | AC | 51 ms
36,840 KB |
testcase_14 | AC | 49 ms
36,868 KB |
testcase_15 | AC | 48 ms
37,088 KB |
testcase_16 | AC | 56 ms
37,000 KB |
testcase_17 | AC | 53 ms
37,128 KB |
testcase_18 | AC | 57 ms
37,336 KB |
testcase_19 | AC | 58 ms
37,420 KB |
testcase_20 | AC | 57 ms
37,264 KB |
testcase_21 | AC | 111 ms
43,176 KB |
testcase_22 | AC | 97 ms
42,828 KB |
testcase_23 | AC | 113 ms
43,120 KB |
testcase_24 | AC | 112 ms
42,996 KB |
testcase_25 | AC | 109 ms
42,964 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class N436 { static int ans=0; static int cnt=0; public static void main(String[] args)throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str=br.readLine(); int c=0,w=0; int[] h=new int[str.length()]; for(int i=0;i<str.length();i++) { h[i]=0; } for(int i=0;i<str.length();i++) { String now=str.substring(i, i+1); if(now.equals("c")) { c++; } else if(now.equals("w")&&c>=2) { h[i-2]++;h[i-1]++;h[i]++; c=0; cnt++; } else { c=0; } } search(h,0,str.length()-1); System.out.println(ans); } static void search(int[] h,int st,int las) { int sbuf=0; int lbuf=0; if(cnt>0) { while(h[st]!=1) { st++; sbuf++; }sbuf++;//このbufが初めの1を消すまでの工程数 while(h[las]!=1) { las--; lbuf++; }lbuf++; cnt--; if(sbuf<=lbuf) { h[st]=0;h[st+1]=0;h[st+2]=0; ans+=sbuf; search(h,st+1,las); } else { h[las]=0;h[las-1]=0;h[las-2]=0; ans+=lbuf; search(h,st,las-1); } } else { return; } } }