結果

問題 No.345 最小チワワ問題
ユーザー fal_rndfal_rnd
提出日時 2017-06-27 20:19:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2024-10-04 13:36:05
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,028 KB
testcase_01 AC 104 ms
53,924 KB
testcase_02 AC 112 ms
53,932 KB
testcase_03 AC 113 ms
53,944 KB
testcase_04 AC 111 ms
54,060 KB
testcase_05 WA -
testcase_06 AC 113 ms
53,908 KB
testcase_07 AC 115 ms
53,796 KB
testcase_08 AC 117 ms
54,052 KB
testcase_09 AC 117 ms
53,768 KB
testcase_10 AC 114 ms
53,936 KB
testcase_11 AC 111 ms
53,848 KB
testcase_12 AC 114 ms
53,836 KB
testcase_13 AC 107 ms
53,208 KB
testcase_14 AC 106 ms
53,868 KB
testcase_15 AC 102 ms
52,792 KB
testcase_16 AC 118 ms
54,012 KB
testcase_17 AC 96 ms
52,864 KB
testcase_18 WA -
testcase_19 AC 108 ms
53,884 KB
testcase_20 AC 111 ms
53,912 KB
testcase_21 AC 94 ms
52,636 KB
testcase_22 AC 111 ms
54,080 KB
testcase_23 AC 107 ms
53,704 KB
testcase_24 AC 114 ms
54,204 KB
testcase_25 AC 113 ms
54,096 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 98 ms
52,980 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 96 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class A{
	public static void main(String[]$){
		char[]v=new java.util.Scanner(System.in).next().toCharArray();
		for(int i=0,c=-1,w=0;i<v.length;i++){
			if(w==0&&v[i]=='c')c=i;
			if(c>=0&&v[i]=='w'&&++w==2) {
				System.out.println(i-c+1);
				return;
			}
		}
		System.out.println(-1);
	}
}
0