結果

問題 No.345 最小チワワ問題
ユーザー FVRChanFVRChan
提出日時 2017-09-29 10:12:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-04-27 16:13:55
合計ジャッジ時間 8,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,964 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 138 ms
54,208 KB
testcase_11 RE -
testcase_12 AC 131 ms
54,156 KB
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 140 ms
53,988 KB
testcase_21 AC 140 ms
54,064 KB
testcase_22 AC 129 ms
54,060 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 129 ms
54,000 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s=sc.nextLine();
		s=s.substring(s.indexOf('c'),s.lastIndexOf('w')+1);
		if(s.lastIndexOf('w') == s.indexOf('w')){
			System.out.println(-1);
		}else{
			System.out.println(s.length());
		}
	}
}
0