結果

問題 No.346 チワワ数え上げ問題
ユーザー jp_stejp_ste
提出日時 2016-02-28 20:57:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 55,220 KB
最終ジャッジ日時 2024-09-24 12:08:21
合計ジャッジ時間 8,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,156 KB
testcase_01 AC 127 ms
54,064 KB
testcase_02 AC 110 ms
52,852 KB
testcase_03 AC 111 ms
52,988 KB
testcase_04 AC 126 ms
54,104 KB
testcase_05 AC 125 ms
53,820 KB
testcase_06 AC 126 ms
54,132 KB
testcase_07 AC 127 ms
54,208 KB
testcase_08 AC 127 ms
54,008 KB
testcase_09 AC 127 ms
54,136 KB
testcase_10 AC 207 ms
54,740 KB
testcase_11 AC 182 ms
53,936 KB
testcase_12 AC 207 ms
55,220 KB
testcase_13 AC 189 ms
54,324 KB
testcase_14 AC 137 ms
54,036 KB
testcase_15 AC 206 ms
54,384 KB
testcase_16 AC 210 ms
54,968 KB
testcase_17 AC 213 ms
54,888 KB
testcase_18 AC 214 ms
54,952 KB
testcase_19 AC 208 ms
54,964 KB
testcase_20 AC 221 ms
54,756 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 124 ms
54,164 KB
testcase_24 AC 122 ms
53,860 KB
testcase_25 AC 125 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            String S = scan.nextLine();
            int count = 0;
            long ans = 0;
            for(int i=S.length()-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