結果

問題 No.345 最小チワワ問題
ユーザー 37zigen37zigen
提出日時 2016-03-11 01:46:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 4,485 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-09-25 11:39:09
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,444 KB
testcase_01 AC 126 ms
41,420 KB
testcase_02 AC 127 ms
41,192 KB
testcase_03 AC 123 ms
41,472 KB
testcase_04 AC 123 ms
41,072 KB
testcase_05 AC 127 ms
41,056 KB
testcase_06 AC 125 ms
41,460 KB
testcase_07 AC 125 ms
41,360 KB
testcase_08 AC 125 ms
41,300 KB
testcase_09 AC 123 ms
41,280 KB
testcase_10 AC 128 ms
41,360 KB
testcase_11 AC 128 ms
41,232 KB
testcase_12 AC 139 ms
41,568 KB
testcase_13 AC 129 ms
40,364 KB
testcase_14 AC 141 ms
41,460 KB
testcase_15 AC 130 ms
41,164 KB
testcase_16 AC 125 ms
41,236 KB
testcase_17 AC 122 ms
41,240 KB
testcase_18 AC 130 ms
41,380 KB
testcase_19 AC 122 ms
41,472 KB
testcase_20 AC 124 ms
41,256 KB
testcase_21 AC 112 ms
40,368 KB
testcase_22 AC 122 ms
41,368 KB
testcase_23 AC 109 ms
40,148 KB
testcase_24 AC 122 ms
41,044 KB
testcase_25 AC 127 ms
41,352 KB
testcase_26 AC 122 ms
41,612 KB
testcase_27 AC 123 ms
41,588 KB
testcase_28 AC 121 ms
41,452 KB
testcase_29 AC 113 ms
40,416 KB
testcase_30 AC 126 ms
41,188 KB
testcase_31 AC 128 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		int ans=Integer.MAX_VALUE;
		for(int i=0;i<str.length();i++){
			for(int j=i+1;j<str.length();j++){
				for(int k=j+1;k<str.length();k++){
					if(str.charAt(i)=='c'&&str.charAt(j)=='w'&&str.charAt(k)=='w'){
						ans=Math.min(ans,k-i+1);
					}
				}
			}
		}
		if(ans==Integer.MAX_VALUE)
			ans=-1;
		System.out.println(ans);
	}
}
0