結果

問題 No.346 チワワ数え上げ問題
ユーザー GrenacheGrenache
提出日時 2016-02-26 22:36:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 3,525 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 42,772 KB
最終ジャッジ日時 2024-09-22 21:55:53
合計ジャッジ時間 9,122 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,136 KB
testcase_01 AC 127 ms
41,248 KB
testcase_02 AC 124 ms
41,048 KB
testcase_03 AC 126 ms
41,220 KB
testcase_04 AC 127 ms
41,064 KB
testcase_05 AC 124 ms
41,464 KB
testcase_06 AC 129 ms
41,088 KB
testcase_07 AC 129 ms
41,128 KB
testcase_08 AC 129 ms
41,160 KB
testcase_09 AC 132 ms
41,240 KB
testcase_10 AC 206 ms
42,668 KB
testcase_11 AC 192 ms
42,076 KB
testcase_12 AC 203 ms
42,236 KB
testcase_13 AC 183 ms
42,092 KB
testcase_14 AC 143 ms
41,260 KB
testcase_15 AC 199 ms
42,572 KB
testcase_16 AC 200 ms
42,316 KB
testcase_17 AC 204 ms
42,760 KB
testcase_18 AC 203 ms
42,644 KB
testcase_19 AC 200 ms
42,404 KB
testcase_20 AC 213 ms
42,536 KB
testcase_21 AC 201 ms
42,772 KB
testcase_22 AC 209 ms
42,648 KB
testcase_23 AC 110 ms
40,028 KB
testcase_24 AC 128 ms
41,248 KB
testcase_25 AC 130 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder346 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] s = sc.next().toCharArray();
        int n = s.length;

        int[] cnt = new int[n + 1];
        for (int i = n - 1; i >= 0; i--) {
    		cnt[i] = cnt[i + 1];
        	if (s[i] == 'w') {
        		cnt[i]++;
        	}
        }

        long ret = 0;
        for (int i = 0; i < n; i++) {
        	if (s[i] == 'c' && cnt[i + 1] >= 2) {
        		ret += (long)cnt[i + 1] * (cnt[i + 1] - 1) / 2;
        	}
        }

        System.out.println(ret);

        sc.close();
    }
}
0