結果

問題 No.346 チワワ数え上げ問題
ユーザー mizunomi32mizunomi32
提出日時 2016-03-01 09:29:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 3,720 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 55,104 KB
最終ジャッジ日時 2024-09-24 13:00:43
合計ジャッジ時間 8,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,048 KB
testcase_01 AC 123 ms
54,060 KB
testcase_02 AC 123 ms
54,004 KB
testcase_03 AC 128 ms
54,076 KB
testcase_04 AC 125 ms
54,132 KB
testcase_05 AC 124 ms
53,996 KB
testcase_06 AC 111 ms
52,724 KB
testcase_07 AC 127 ms
53,896 KB
testcase_08 AC 127 ms
54,004 KB
testcase_09 AC 126 ms
54,316 KB
testcase_10 AC 217 ms
54,536 KB
testcase_11 AC 184 ms
54,376 KB
testcase_12 AC 200 ms
55,104 KB
testcase_13 AC 187 ms
54,992 KB
testcase_14 AC 135 ms
54,252 KB
testcase_15 AC 208 ms
54,480 KB
testcase_16 AC 209 ms
54,736 KB
testcase_17 AC 215 ms
54,640 KB
testcase_18 AC 203 ms
55,020 KB
testcase_19 AC 213 ms
54,960 KB
testcase_20 AC 215 ms
55,000 KB
testcase_21 AC 212 ms
54,680 KB
testcase_22 AC 214 ms
54,536 KB
testcase_23 AC 122 ms
54,152 KB
testcase_24 AC 122 ms
54,048 KB
testcase_25 AC 111 ms
53,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class main {
    public static void main (String[] args){
        Scanner sc = new Scanner(System.in);
        String S=sc.nextLine();
        int slen= S.length();

        long count =0;
        long ans=0;
        for(int i =slen-1;i>=0;i--){
            if(S.charAt(i)=='w'){
                count++;
            }else if(S.charAt(i)=='c'){
                ans += count *(count-1)/2;
            }
        }
        System.out.println(ans);
    }
}
0