結果

問題 No.346 チワワ数え上げ問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-11 23:01:24
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 64,740 KB
最終ジャッジ日時 2024-06-24 09:26:31
合計ジャッジ時間 15,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,573 ms
63,876 KB
testcase_01 AC 296 ms
57,144 KB
testcase_02 AC 146 ms
54,276 KB
testcase_03 AC 166 ms
56,612 KB
testcase_04 AC 1,139 ms
56,928 KB
testcase_05 AC 123 ms
54,348 KB
testcase_06 AC 723 ms
56,952 KB
testcase_07 AC 384 ms
57,132 KB
testcase_08 AC 615 ms
56,884 KB
testcase_09 AC 1,761 ms
56,884 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();

        int l = s.length();

        int count = 0;
        char[] c = new char[3];
        for(int i=0; i<l; i++) {
            c[0] = s.charAt(i);
            for(int j=i+1; j<l; j++) {
                c[1] = s.charAt(j);
                for(int k=j+1; k<l; k++) {
                    c[2] = s.charAt(k);
                    String str = String.valueOf(c);;
                    if(str.equals("cww")) count++;
                }
            }
        }

        System.out.println(count);
    }
}
0