結果

問題 No.345 最小チワワ問題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 16:01:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-09-25 12:11:58
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,048 KB
testcase_01 AC 113 ms
41,228 KB
testcase_02 AC 98 ms
39,576 KB
testcase_03 AC 117 ms
41,016 KB
testcase_04 AC 112 ms
40,920 KB
testcase_05 AC 112 ms
41,184 KB
testcase_06 AC 111 ms
40,936 KB
testcase_07 AC 114 ms
41,276 KB
testcase_08 AC 115 ms
41,044 KB
testcase_09 AC 118 ms
40,936 KB
testcase_10 AC 112 ms
41,052 KB
testcase_11 AC 112 ms
41,184 KB
testcase_12 AC 105 ms
39,976 KB
testcase_13 AC 113 ms
41,136 KB
testcase_14 AC 115 ms
40,924 KB
testcase_15 AC 118 ms
41,436 KB
testcase_16 AC 101 ms
40,056 KB
testcase_17 AC 113 ms
41,044 KB
testcase_18 AC 100 ms
40,032 KB
testcase_19 AC 112 ms
40,996 KB
testcase_20 AC 100 ms
40,176 KB
testcase_21 AC 112 ms
41,440 KB
testcase_22 AC 110 ms
40,780 KB
testcase_23 AC 105 ms
40,572 KB
testcase_24 AC 116 ms
41,280 KB
testcase_25 AC 119 ms
41,668 KB
testcase_26 AC 110 ms
41,232 KB
testcase_27 AC 101 ms
39,880 KB
testcase_28 AC 111 ms
41,184 KB
testcase_29 AC 111 ms
40,816 KB
testcase_30 AC 112 ms
40,860 KB
testcase_31 AC 113 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		String status = "";
		int min = 1000;
		int len = 0;
		int j = 0;
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if (c!='c') {continue;}
			
			int t = 0;
			for (j=i+1; j<s.length(); j++) {
				if (s.charAt(j)=='w') {t++;}
				if (t == 2) {break;}
			}
			if (t == 2) {
				j = j-i+1;
				min = Math.min(min,j);
			}
		}
		System.out.println(min==1000?-1:min);
	}
}
0