結果

問題 No.345 最小チワワ問題
ユーザー shinwisteriashinwisteria
提出日時 2017-04-15 15:36:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 79,772 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-09-25 11:58:13
合計ジャッジ時間 8,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,224 KB
testcase_01 AC 103 ms
40,016 KB
testcase_02 AC 116 ms
41,588 KB
testcase_03 AC 114 ms
41,168 KB
testcase_04 AC 115 ms
41,336 KB
testcase_05 AC 114 ms
41,044 KB
testcase_06 AC 115 ms
41,188 KB
testcase_07 AC 112 ms
40,884 KB
testcase_08 AC 109 ms
40,256 KB
testcase_09 AC 121 ms
41,456 KB
testcase_10 AC 115 ms
41,060 KB
testcase_11 AC 106 ms
40,088 KB
testcase_12 AC 110 ms
40,264 KB
testcase_13 AC 114 ms
40,920 KB
testcase_14 AC 105 ms
40,124 KB
testcase_15 AC 119 ms
41,404 KB
testcase_16 AC 128 ms
41,336 KB
testcase_17 AC 113 ms
41,084 KB
testcase_18 AC 108 ms
40,572 KB
testcase_19 AC 101 ms
39,832 KB
testcase_20 AC 109 ms
40,816 KB
testcase_21 AC 114 ms
41,164 KB
testcase_22 AC 113 ms
40,944 KB
testcase_23 AC 120 ms
41,284 KB
testcase_24 AC 105 ms
40,032 KB
testcase_25 AC 102 ms
39,896 KB
testcase_26 AC 116 ms
41,312 KB
testcase_27 AC 104 ms
40,308 KB
testcase_28 AC 114 ms
41,312 KB
testcase_29 AC 107 ms
40,060 KB
testcase_30 AC 132 ms
41,296 KB
testcase_31 AC 130 ms
41,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
//未完成
import java.util.Scanner;
import java.util.TreeSet;

public class Mincww {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		StringBuilder cww = new StringBuilder(s.next());
		s.close();
		TreeSet<Integer> clist = new TreeSet<>();
		ArrayList<Integer> wlist = new ArrayList<>();
		while(cww.indexOf("c") != -1 || cww.indexOf("w") != -1){
			int cn = cww.lastIndexOf("c");
			int wn = cww.lastIndexOf("w");
			if((cn != -1 && Math.max(cn, wn) == cn) || wn == -1){
				clist.add(cn);
				cww.delete(cn,cww.length()+1);
			}else if(cn == -1 || (wn != -1 && Math.max(cn, wn) == wn)){
				wlist.add(0,wn);
				cww.delete(wn,cww.length()+1);
			}
		}
		int count = -1;
		for(int c:clist){
			int k =0;
			for(int i = 0;i < wlist.size();i++){
				if(wlist.get(i) > c){
					k++;
					if(k == 2){
						int a = wlist.get(i)-c+1;
						if(count == -1){
							count = a;
						}else{
							count = Math.min(count, a);
						}
					}
				}
				
			}
		}
		System.out.println(count);
	}
}
0