結果

問題 No.346 チワワ数え上げ問題
ユーザー kusagame12kusagame12
提出日時 2024-06-13 19:03:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 2,840 ms
コンパイル使用メモリ 84,744 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2024-06-13 19:03:51
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,068 KB
testcase_01 AC 128 ms
54,032 KB
testcase_02 AC 128 ms
54,224 KB
testcase_03 AC 130 ms
54,216 KB
testcase_04 AC 135 ms
54,028 KB
testcase_05 AC 134 ms
53,732 KB
testcase_06 AC 146 ms
53,848 KB
testcase_07 AC 128 ms
54,072 KB
testcase_08 AC 133 ms
53,880 KB
testcase_09 AC 136 ms
53,976 KB
testcase_10 WA -
testcase_11 AC 188 ms
54,188 KB
testcase_12 WA -
testcase_13 AC 185 ms
54,292 KB
testcase_14 AC 138 ms
53,936 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 206 ms
54,188 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 124 ms
53,832 KB
testcase_24 AC 124 ms
54,184 KB
testcase_25 AC 132 ms
53,996 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();

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

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

            if(c[i] == 'w'){
                wCnts[i] = wCnts[i+1] + 1; 
            }else if(c[i] == 'c'){
                int 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