結果

問題 No.345 最小チワワ問題
ユーザー 37zigen37zigen
提出日時 2016-03-11 01:44:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 56,248 KB
最終ジャッジ日時 2024-09-24 23:35:04
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,964 KB
testcase_01 AC 131 ms
53,912 KB
testcase_02 AC 132 ms
54,104 KB
testcase_03 AC 134 ms
53,940 KB
testcase_04 AC 132 ms
54,068 KB
testcase_05 AC 128 ms
53,920 KB
testcase_06 AC 129 ms
54,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
53,836 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 142 ms
53,900 KB
testcase_15 AC 135 ms
53,864 KB
testcase_16 AC 132 ms
54,016 KB
testcase_17 AC 129 ms
53,748 KB
testcase_18 AC 135 ms
53,944 KB
testcase_19 AC 129 ms
54,004 KB
testcase_20 AC 129 ms
53,924 KB
testcase_21 WA -
testcase_22 AC 130 ms
53,944 KB
testcase_23 AC 131 ms
53,964 KB
testcase_24 AC 129 ms
53,892 KB
testcase_25 AC 128 ms
53,968 KB
testcase_26 AC 128 ms
53,684 KB
testcase_27 AC 131 ms
53,584 KB
testcase_28 WA -
testcase_29 AC 130 ms
53,892 KB
testcase_30 AC 131 ms
54,000 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
					}
				}
			}
		}
		System.out.println(ans);
	}
}
0