結果

問題 No.345 最小チワワ問題
ユーザー 4A9GN4A9GN
提出日時 2016-07-21 21:17:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 892 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 56,208 KB
最終ジャッジ日時 2024-11-06 07:39:21
合計ジャッジ時間 7,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,072 KB
testcase_01 AC 113 ms
53,056 KB
testcase_02 AC 128 ms
54,104 KB
testcase_03 AC 114 ms
52,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 127 ms
54,052 KB
testcase_08 AC 126 ms
53,860 KB
testcase_09 AC 128 ms
53,928 KB
testcase_10 AC 129 ms
53,864 KB
testcase_11 AC 127 ms
54,000 KB
testcase_12 AC 128 ms
54,208 KB
testcase_13 AC 129 ms
54,076 KB
testcase_14 WA -
testcase_15 AC 128 ms
54,036 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 128 ms
54,004 KB
testcase_20 AC 133 ms
54,032 KB
testcase_21 AC 127 ms
54,104 KB
testcase_22 AC 128 ms
54,160 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 128 ms
53,856 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 132 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        ArrayList<Character> ch = new ArrayList<Character>();
        String str = sc.next();
        for (char c : str.toCharArray())
            ch.add(c);
        int n = -1;
        int cnt = 0;
        int size = 0;
        
        for (int i = 0; i < ch.size(); i++) {
            if (cnt == 3) break;
            switch (cnt) {
                case 0:
                    if (ch.get(i) == 'c') { cnt++; size++; };
                    break;
                case 1:
                case 2:
                    if (ch.get(i) == 'w') cnt++;
                    size++;
                    break;
            }
        }
        if (cnt == 3) System.out.printf("%d\n", size);
        else System.out.println("-1");
    }
}
0