結果

問題 No.345 最小チワワ問題
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 18:16:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-11-25 21:21:55
合計ジャッジ時間 6,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,064 KB
testcase_01 AC 110 ms
41,328 KB
testcase_02 AC 100 ms
40,252 KB
testcase_03 AC 100 ms
39,900 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 113 ms
41,188 KB
testcase_08 AC 103 ms
40,056 KB
testcase_09 AC 95 ms
39,688 KB
testcase_10 AC 95 ms
40,024 KB
testcase_11 AC 115 ms
41,032 KB
testcase_12 AC 110 ms
41,000 KB
testcase_13 AC 102 ms
40,208 KB
testcase_14 WA -
testcase_15 AC 109 ms
41,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 110 ms
40,864 KB
testcase_20 AC 111 ms
41,104 KB
testcase_21 AC 109 ms
41,148 KB
testcase_22 AC 98 ms
39,804 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 118 ms
41,280 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 114 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int a =S.indexOf("c");
        if(a==-1){
            System.out.println(-1);
        }else{
            S = S.substring(a);
            int b = S.indexOf("w");
            String t = S.substring(b+1);
            int c = t.indexOf("w");
            if(c==-1){
                System.out.println(-1);
            }else{
                System.out.println(b+c+2);
            }
        }
    }
}
0