結果

問題 No.345 最小チワワ問題
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:49:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 56,164 KB
最終ジャッジ日時 2024-11-15 18:40:13
合計ジャッジ時間 8,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,252 KB
testcase_01 AC 120 ms
41,708 KB
testcase_02 AC 121 ms
52,020 KB
testcase_03 AC 119 ms
41,284 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 121 ms
41,220 KB
testcase_08 AC 122 ms
49,924 KB
testcase_09 AC 120 ms
41,212 KB
testcase_10 AC 122 ms
50,084 KB
testcase_11 AC 122 ms
41,480 KB
testcase_12 AC 123 ms
41,288 KB
testcase_13 AC 119 ms
41,200 KB
testcase_14 WA -
testcase_15 AC 111 ms
49,220 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 104 ms
48,684 KB
testcase_20 AC 116 ms
41,268 KB
testcase_21 AC 118 ms
41,364 KB
testcase_22 AC 120 ms
49,980 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 118 ms
50,260 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 118 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String s = sc.next();
		int a, b, c;
		a = s.indexOf("c");
		if (a < 0) {
			System.out.println(-1);
			return;
		}
		b = s.indexOf("w", a + 1);
		if (b < 0) {
			System.out.println(-1);
			return;
		}
		c = s.indexOf("w", b + 1);
		if (c < 0) {
			System.out.println(-1);
			return;
		}
		System.out.println(c - a + 1);
	}
}
0