結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,992 KB
testcase_01 AC 129 ms
54,088 KB
testcase_02 AC 128 ms
54,096 KB
testcase_03 AC 130 ms
53,980 KB
testcase_04 AC 129 ms
53,792 KB
testcase_05 AC 131 ms
53,696 KB
testcase_06 AC 128 ms
53,896 KB
testcase_07 AC 127 ms
53,884 KB
testcase_08 AC 129 ms
54,320 KB
testcase_09 AC 128 ms
54,044 KB
testcase_10 AC 220 ms
54,768 KB
testcase_11 AC 190 ms
54,428 KB
testcase_12 AC 220 ms
55,140 KB
testcase_13 AC 192 ms
54,292 KB
testcase_14 AC 143 ms
54,108 KB
testcase_15 AC 214 ms
54,672 KB
testcase_16 AC 217 ms
54,424 KB
testcase_17 AC 208 ms
54,756 KB
testcase_18 AC 217 ms
55,164 KB
testcase_19 AC 213 ms
54,768 KB
testcase_20 AC 222 ms
54,936 KB
testcase_21 AC 218 ms
54,500 KB
testcase_22 AC 205 ms
54,748 KB
testcase_23 AC 125 ms
54,068 KB
testcase_24 AC 124 ms
54,156 KB
testcase_25 AC 125 ms
54,088 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();
            long 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