結果

問題 No.346 チワワ数え上げ問題
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-11 23:07:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 4,277 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 56,440 KB
最終ジャッジ日時 2024-06-24 09:36:29
合計ジャッジ時間 8,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,104 KB
testcase_01 AC 149 ms
54,004 KB
testcase_02 AC 145 ms
53,824 KB
testcase_03 AC 147 ms
53,984 KB
testcase_04 AC 149 ms
54,108 KB
testcase_05 AC 146 ms
54,340 KB
testcase_06 AC 151 ms
54,140 KB
testcase_07 AC 152 ms
53,984 KB
testcase_08 AC 151 ms
54,140 KB
testcase_09 AC 149 ms
54,232 KB
testcase_10 WA -
testcase_11 AC 188 ms
54,352 KB
testcase_12 WA -
testcase_13 AC 171 ms
54,264 KB
testcase_14 AC 139 ms
54,204 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 200 ms
54,252 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 126 ms
54,204 KB
testcase_24 AC 125 ms
54,184 KB
testcase_25 AC 145 ms
53,944 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();
        int ans = 0;
        int 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