結果

問題 No.346 チワワ数え上げ問題
ユーザー kusagame12kusagame12
提出日時 2024-06-13 19:05:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 3,922 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 58,220 KB
最終ジャッジ日時 2024-06-13 19:05:35
合計ジャッジ時間 9,471 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,920 KB
testcase_01 AC 114 ms
54,132 KB
testcase_02 AC 104 ms
52,908 KB
testcase_03 AC 102 ms
52,956 KB
testcase_04 AC 126 ms
53,924 KB
testcase_05 AC 113 ms
54,004 KB
testcase_06 AC 105 ms
52,908 KB
testcase_07 AC 113 ms
53,948 KB
testcase_08 AC 103 ms
53,028 KB
testcase_09 AC 118 ms
53,972 KB
testcase_10 AC 188 ms
56,548 KB
testcase_11 AC 170 ms
54,108 KB
testcase_12 AC 189 ms
56,260 KB
testcase_13 AC 168 ms
54,128 KB
testcase_14 AC 133 ms
53,976 KB
testcase_15 AC 173 ms
56,368 KB
testcase_16 AC 184 ms
56,236 KB
testcase_17 AC 186 ms
58,220 KB
testcase_18 AC 178 ms
56,016 KB
testcase_19 AC 189 ms
56,060 KB
testcase_20 AC 167 ms
56,444 KB
testcase_21 AC 187 ms
56,220 KB
testcase_22 AC 176 ms
56,680 KB
testcase_23 AC 105 ms
53,380 KB
testcase_24 AC 102 ms
52,696 KB
testcase_25 AC 115 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        char[] c = sc.next().toCharArray();

        long[] wCnts = new long[c.length];
        if(c[c.length - 1] == 'w'){
            wCnts[wCnts.length - 1] = 1;
        }

        long sum = 0l;
        for (int i=c.length - 2; i>=0; i--) {

            if(c[i] == 'w'){
                wCnts[i] = wCnts[i+1] + 1; 
            }else if(c[i] == 'c'){
                long wCnt = wCnts[i+1];
                sum += (wCnt * (wCnt - 1)) / 2;
                wCnts[i] = wCnts[i+1];
            }else{
                wCnts[i] = wCnts[i+1];
            }
            
        }

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