結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,840 KB
testcase_01 AC 120 ms
53,724 KB
testcase_02 AC 121 ms
53,900 KB
testcase_03 AC 123 ms
53,968 KB
testcase_04 AC 122 ms
53,828 KB
testcase_05 AC 109 ms
52,832 KB
testcase_06 AC 120 ms
54,632 KB
testcase_07 AC 121 ms
53,804 KB
testcase_08 AC 119 ms
53,684 KB
testcase_09 AC 120 ms
53,844 KB
testcase_10 WA -
testcase_11 AC 187 ms
54,212 KB
testcase_12 WA -
testcase_13 AC 183 ms
54,152 KB
testcase_14 AC 140 ms
54,140 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 200 ms
54,696 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 118 ms
53,828 KB
testcase_24 AC 119 ms
53,900 KB
testcase_25 AC 120 ms
54,012 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;
            int 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