結果

問題 No.345 最小チワワ問題
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 16:48:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-10-01 05:13:27
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,088 KB
testcase_01 AC 122 ms
54,016 KB
testcase_02 AC 127 ms
53,860 KB
testcase_03 AC 128 ms
54,280 KB
testcase_04 AC 123 ms
53,980 KB
testcase_05 AC 126 ms
53,980 KB
testcase_06 AC 135 ms
54,044 KB
testcase_07 AC 126 ms
53,816 KB
testcase_08 AC 124 ms
53,924 KB
testcase_09 AC 132 ms
53,980 KB
testcase_10 AC 116 ms
52,696 KB
testcase_11 AC 131 ms
53,948 KB
testcase_12 AC 123 ms
54,004 KB
testcase_13 AC 128 ms
54,148 KB
testcase_14 AC 128 ms
54,104 KB
testcase_15 AC 126 ms
54,068 KB
testcase_16 AC 124 ms
53,984 KB
testcase_17 AC 132 ms
53,808 KB
testcase_18 AC 123 ms
53,968 KB
testcase_19 AC 119 ms
53,984 KB
testcase_20 AC 129 ms
54,080 KB
testcase_21 AC 119 ms
54,100 KB
testcase_22 AC 123 ms
53,808 KB
testcase_23 AC 121 ms
54,100 KB
testcase_24 AC 121 ms
53,996 KB
testcase_25 AC 124 ms
53,976 KB
testcase_26 AC 126 ms
53,852 KB
testcase_27 AC 125 ms
53,968 KB
testcase_28 AC 127 ms
53,976 KB
testcase_29 AC 116 ms
53,900 KB
testcase_30 AC 118 ms
54,104 KB
testcase_31 AC 119 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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