結果

問題 No.346 チワワ数え上げ問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-11 23:09:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-06-24 09:38:44
合計ジャッジ時間 6,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,300 KB
testcase_01 AC 124 ms
54,008 KB
testcase_02 AC 118 ms
53,772 KB
testcase_03 AC 120 ms
53,836 KB
testcase_04 AC 125 ms
54,376 KB
testcase_05 AC 120 ms
53,936 KB
testcase_06 AC 127 ms
54,228 KB
testcase_07 AC 121 ms
53,972 KB
testcase_08 AC 123 ms
54,156 KB
testcase_09 AC 121 ms
54,100 KB
testcase_10 AC 178 ms
54,544 KB
testcase_11 AC 180 ms
54,200 KB
testcase_12 AC 184 ms
54,448 KB
testcase_13 AC 176 ms
54,468 KB
testcase_14 AC 140 ms
54,500 KB
testcase_15 AC 185 ms
54,032 KB
testcase_16 AC 184 ms
54,496 KB
testcase_17 AC 188 ms
54,624 KB
testcase_18 AC 193 ms
54,164 KB
testcase_19 AC 189 ms
54,312 KB
testcase_20 AC 196 ms
54,520 KB
testcase_21 AC 184 ms
54,332 KB
testcase_22 AC 192 ms
54,464 KB
testcase_23 AC 120 ms
54,124 KB
testcase_24 AC 122 ms
54,200 KB
testcase_25 AC 112 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

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();
        long ans = 0;
        long wc = 0;

        for(int i=l-1; i>=0; i--) {
            if(s.charAt(i) == 'w') wc++;
            if(s.charAt(i) == 'c') ans += wc * (wc-1) / 2;
        }

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