結果

問題 No.346 チワワ数え上げ問題
ユーザー Mcpu3Mcpu3
提出日時 2018-09-26 16:44:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,968 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 43,404 KB
最終ジャッジ日時 2024-10-11 06:09:08
合計ジャッジ時間 8,109 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,488 KB
testcase_01 AC 137 ms
41,012 KB
testcase_02 AC 139 ms
41,172 KB
testcase_03 AC 137 ms
41,072 KB
testcase_04 AC 140 ms
41,016 KB
testcase_05 AC 140 ms
41,172 KB
testcase_06 AC 138 ms
40,972 KB
testcase_07 AC 134 ms
41,204 KB
testcase_08 AC 136 ms
41,068 KB
testcase_09 AC 134 ms
41,332 KB
testcase_10 AC 210 ms
43,404 KB
testcase_11 AC 188 ms
42,184 KB
testcase_12 AC 202 ms
42,544 KB
testcase_13 AC 200 ms
42,196 KB
testcase_14 AC 146 ms
41,024 KB
testcase_15 AC 198 ms
43,192 KB
testcase_16 AC 200 ms
42,708 KB
testcase_17 AC 210 ms
42,776 KB
testcase_18 AC 225 ms
43,152 KB
testcase_19 AC 209 ms
42,996 KB
testcase_20 AC 210 ms
42,968 KB
testcase_21 AC 219 ms
42,960 KB
testcase_22 AC 212 ms
42,816 KB
testcase_23 AC 129 ms
41,816 KB
testcase_24 AC 137 ms
41,088 KB
testcase_25 AC 131 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        sc.close();
        int length = S.length();
        long cum[] = new long[length], ans = 0;
        if (S.charAt(length - 1) == 'w') cum[length - 1] = 1;
        else cum[length - 1] = 0;
        for (int i = length - 2; 0 <= i; --i) {
            if (S.charAt(i) == 'w') cum[i] = cum[i + 1] + 1;
            else cum[i] = cum[i + 1];
        }
        for (int i = 0; i < length; ++i) {
            if (S.charAt(i) == 'c') ans += ((cum[i] - 1) * cum[i]) / 2;
        }
        System.out.print(ans);
    }
}
0