結果

問題 No.345 最小チワワ問題
ユーザー marumaru
提出日時 2016-03-24 01:52:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-10-01 21:42:39
合計ジャッジ時間 9,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,444 KB
testcase_01 AC 156 ms
42,440 KB
testcase_02 AC 158 ms
42,328 KB
testcase_03 AC 157 ms
42,528 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 120 ms
41,548 KB
testcase_08 AC 120 ms
41,404 KB
testcase_09 AC 121 ms
41,064 KB
testcase_10 AC 155 ms
42,556 KB
testcase_11 AC 111 ms
41,292 KB
testcase_12 AC 122 ms
41,276 KB
testcase_13 AC 123 ms
41,204 KB
testcase_14 WA -
testcase_15 AC 157 ms
42,444 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 156 ms
42,116 KB
testcase_20 AC 155 ms
42,400 KB
testcase_21 AC 121 ms
41,084 KB
testcase_22 AC 143 ms
42,488 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 124 ms
41,140 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 123 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_345 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		String str1 = stdIn.next();
		
		int mojisu = -1;
		
		int c = str1.indexOf("c");
		
		if (c != -1) {
			String str2 = str1.substring(c + 1);
			int w1 = str2.indexOf("w");
			
			if (w1 != -1) {
				String str3 = str2.substring(w1 + 1);
				
				int w2 = str3.indexOf("w");
				
				if(w2 != -1) {
					String moji = str1.substring(c, c + 1) + str2.substring(0, w1 + 1) + str3.substring(0, w2 + 1);
					mojisu = moji.length();				}
			}
		}
		System.out.println(mojisu);
	}
}
0