結果

問題 No.345 最小チワワ問題
ユーザー eagleeagle
提出日時 2022-06-14 11:26:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,112 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-10-02 05:40:08
合計ジャッジ時間 7,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,880 KB
testcase_01 AC 126 ms
41,408 KB
testcase_02 AC 125 ms
41,420 KB
testcase_03 AC 127 ms
41,688 KB
testcase_04 AC 129 ms
41,484 KB
testcase_05 AC 116 ms
40,260 KB
testcase_06 AC 127 ms
41,488 KB
testcase_07 AC 129 ms
40,904 KB
testcase_08 AC 128 ms
41,116 KB
testcase_09 AC 130 ms
41,420 KB
testcase_10 AC 127 ms
41,280 KB
testcase_11 AC 127 ms
41,488 KB
testcase_12 AC 127 ms
40,840 KB
testcase_13 AC 126 ms
41,044 KB
testcase_14 AC 128 ms
41,424 KB
testcase_15 AC 126 ms
41,084 KB
testcase_16 AC 128 ms
40,900 KB
testcase_17 AC 126 ms
41,304 KB
testcase_18 AC 128 ms
41,180 KB
testcase_19 AC 129 ms
41,360 KB
testcase_20 AC 126 ms
41,156 KB
testcase_21 AC 127 ms
40,912 KB
testcase_22 AC 127 ms
41,360 KB
testcase_23 AC 127 ms
41,396 KB
testcase_24 AC 124 ms
41,112 KB
testcase_25 AC 125 ms
41,228 KB
testcase_26 AC 126 ms
41,032 KB
testcase_27 AC 127 ms
41,180 KB
testcase_28 AC 127 ms
41,304 KB
testcase_29 AC 128 ms
41,284 KB
testcase_30 AC 127 ms
41,276 KB
testcase_31 AC 128 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//与えられる文字列
		String S = sc.next();
		//チワワ列の長さ
		int ans = Integer.MAX_VALUE;
		//チワワ列を見つけたか
		boolean find = false;
		//cを探す
		for(int i = 0; i < S.length(); i++) {
			char c = S.charAt(i);
			//cを見つけたら
			if(c == 'c') {
				int length = 1;
				//wを二回探す
				boolean finish = false; //チワワ列が終わったか
				boolean findW = false; //wを見つけたか
				for(int j = i + 1; j < S.length(); j++) {
					char w = S.charAt(j);
					length++;
					//wを見つけたら
					if(w == 'w') {
						//二回目なら終了
						if(findW) {
							finish = true;
							break;
						}
						//一回目の場合
						findW = true;
					}
				}
				if(finish && ans > length) {
					ans = length;
					find = true;
				}
			}
		}
		//チワワ列を見つけられていない場合
		if(!find) {
			ans = -1;
		}
		System.out.println(ans);
	}
}
0