結果

問題 No.345 最小チワワ問題
ユーザー fal_rndfal_rnd
提出日時 2017-07-14 17:48:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-09-25 12:01:25
合計ジャッジ時間 7,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,384 KB
testcase_01 AC 127 ms
54,164 KB
testcase_02 AC 125 ms
54,104 KB
testcase_03 AC 126 ms
54,124 KB
testcase_04 AC 126 ms
54,064 KB
testcase_05 AC 123 ms
54,184 KB
testcase_06 AC 109 ms
53,024 KB
testcase_07 AC 124 ms
54,120 KB
testcase_08 AC 125 ms
53,872 KB
testcase_09 AC 124 ms
54,100 KB
testcase_10 AC 126 ms
54,008 KB
testcase_11 AC 124 ms
53,908 KB
testcase_12 AC 125 ms
54,032 KB
testcase_13 AC 129 ms
54,100 KB
testcase_14 AC 127 ms
54,196 KB
testcase_15 AC 111 ms
53,016 KB
testcase_16 AC 123 ms
53,988 KB
testcase_17 AC 127 ms
54,300 KB
testcase_18 AC 128 ms
54,240 KB
testcase_19 AC 126 ms
53,940 KB
testcase_20 AC 126 ms
54,080 KB
testcase_21 AC 126 ms
54,072 KB
testcase_22 AC 125 ms
54,408 KB
testcase_23 AC 110 ms
52,984 KB
testcase_24 AC 129 ms
54,100 KB
testcase_25 AC 125 ms
53,988 KB
testcase_26 AC 127 ms
53,880 KB
testcase_27 AC 126 ms
54,028 KB
testcase_28 AC 126 ms
54,080 KB
testcase_29 AC 126 ms
53,984 KB
testcase_30 AC 124 ms
54,168 KB
testcase_31 AC 126 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;

class C{
	public static void main(String[]$){
		char[]s=new java.util.Scanner(System.in).next().toCharArray();
		int r=114;
		List<Integer>d=new ArrayList<>();
		for(int i=s.length-1;i>=0;--i) {
			if(s[i]=='w')
				d.add(i);
			if(d.size()>2)
				d.remove(0);
			if(s[i]=='c'&&d.size()==2)
				r=Math.min(r,d.get(0)-i+1);
		}
		System.out.println(r==114?-1:r);
	}
}
0