結果

問題 No.345 最小チワワ問題
ユーザー ohagi_1182ohagi_1182
提出日時 2017-11-24 22:18:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,291 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-09-25 12:07:24
合計ジャッジ時間 7,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,804 KB
testcase_01 AC 123 ms
54,000 KB
testcase_02 AC 124 ms
54,144 KB
testcase_03 AC 124 ms
53,904 KB
testcase_04 AC 124 ms
54,048 KB
testcase_05 AC 123 ms
54,144 KB
testcase_06 AC 118 ms
54,060 KB
testcase_07 AC 126 ms
53,920 KB
testcase_08 AC 125 ms
53,868 KB
testcase_09 AC 123 ms
53,820 KB
testcase_10 AC 121 ms
53,756 KB
testcase_11 AC 123 ms
54,148 KB
testcase_12 AC 138 ms
54,004 KB
testcase_13 AC 136 ms
54,252 KB
testcase_14 AC 122 ms
52,984 KB
testcase_15 AC 123 ms
53,892 KB
testcase_16 AC 109 ms
52,820 KB
testcase_17 AC 123 ms
53,816 KB
testcase_18 AC 125 ms
53,804 KB
testcase_19 AC 123 ms
54,036 KB
testcase_20 AC 123 ms
54,048 KB
testcase_21 AC 122 ms
53,996 KB
testcase_22 AC 123 ms
54,060 KB
testcase_23 AC 123 ms
54,212 KB
testcase_24 AC 123 ms
53,608 KB
testcase_25 AC 123 ms
53,936 KB
testcase_26 AC 125 ms
54,072 KB
testcase_27 AC 123 ms
53,932 KB
testcase_28 AC 123 ms
53,848 KB
testcase_29 AC 113 ms
52,772 KB
testcase_30 AC 126 ms
53,864 KB
testcase_31 AC 124 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static final int INF = Integer.MAX_VALUE;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		int n = a.length();
		int ans = INF;
		for(int i = 0 ; i < n ; i++) {
			for(int j = i + 1 ; j < n ; j++) {
				for(int k = j + 1 ; k < n ; k++) {
					if(a.charAt(i) == 'c' && a.charAt(j) == 'w' && a.charAt(k) == 'w') {
						ans = Math.min(ans, k - i + 1);
					}
				}
			}
		}
		if(ans == INF) {
			System.out.println(-1);
		} else {
			System.out.println(ans);
		}
	}
}
0