結果

問題 No.345 最小チワワ問題
ユーザー marumaru
提出日時 2017-09-21 00:28:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 3,508 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-11-08 09:23:36
合計ジャッジ時間 8,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,104 KB
testcase_01 AC 113 ms
40,340 KB
testcase_02 AC 126 ms
41,044 KB
testcase_03 AC 111 ms
39,888 KB
testcase_04 AC 126 ms
40,900 KB
testcase_05 WA -
testcase_06 AC 126 ms
41,208 KB
testcase_07 AC 113 ms
40,260 KB
testcase_08 AC 125 ms
40,984 KB
testcase_09 AC 128 ms
40,940 KB
testcase_10 AC 126 ms
41,280 KB
testcase_11 AC 126 ms
41,268 KB
testcase_12 AC 133 ms
41,128 KB
testcase_13 WA -
testcase_14 AC 128 ms
41,016 KB
testcase_15 AC 127 ms
41,196 KB
testcase_16 AC 126 ms
41,156 KB
testcase_17 AC 128 ms
41,040 KB
testcase_18 WA -
testcase_19 AC 129 ms
41,200 KB
testcase_20 AC 129 ms
41,236 KB
testcase_21 AC 123 ms
41,164 KB
testcase_22 AC 124 ms
41,236 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 128 ms
41,476 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 113 ms
40,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicode;

import java.util.Scanner;

public class chiwawa {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		String input = scanner.nextLine();
		String[] s_array = input.split("");

			int cwwArray[] = new int[3];
			for (int i = 0; i < s_array.length; i++) {
				if (s_array[i].equals("c") && cwwArray[1] == 0) {
					cwwArray[0] = i;
				} else if (s_array[i].equals("w") && cwwArray[1] == 0) {
					cwwArray[1] = i;
				} else if (s_array[i].equals("w") && cwwArray[2] == 0) {
					cwwArray[2] = i;
				}
			}
			if (cwwArray[2] == 0) {
				System.out.println(-1);
			} else {
				System.out.println(cwwArray[2] - cwwArray[0] + 1);
			}
			scanner.close();
	}
}
0