結果

問題 No.346 チワワ数え上げ問題
ユーザー tentententen
提出日時 2022-07-30 16:16:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 2,497 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 39,100 KB
最終ジャッジ日時 2024-07-20 13:08:36
合計ジャッジ時間 5,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,984 KB
testcase_01 AC 53 ms
36,884 KB
testcase_02 AC 54 ms
37,128 KB
testcase_03 AC 54 ms
37,096 KB
testcase_04 AC 53 ms
36,680 KB
testcase_05 AC 54 ms
36,884 KB
testcase_06 AC 52 ms
37,060 KB
testcase_07 AC 53 ms
36,844 KB
testcase_08 AC 52 ms
36,980 KB
testcase_09 AC 52 ms
37,088 KB
testcase_10 AC 87 ms
38,832 KB
testcase_11 AC 80 ms
38,212 KB
testcase_12 AC 93 ms
38,716 KB
testcase_13 AC 67 ms
37,632 KB
testcase_14 AC 53 ms
37,148 KB
testcase_15 AC 73 ms
38,064 KB
testcase_16 AC 94 ms
38,700 KB
testcase_17 AC 97 ms
38,992 KB
testcase_18 AC 87 ms
38,936 KB
testcase_19 AC 95 ms
38,884 KB
testcase_20 AC 87 ms
38,696 KB
testcase_21 AC 93 ms
39,100 KB
testcase_22 AC 87 ms
38,924 KB
testcase_23 AC 52 ms
36,672 KB
testcase_24 AC 51 ms
37,040 KB
testcase_25 AC 52 ms
36,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long cCount = 0;
        long w1Count = 0;
        long ans = 0;
        for (char c : sc.next().toCharArray()) {
            if (c == 'w') {
                ans += w1Count;
                w1Count += cCount;
            } else if (c == 'c') {
                cCount++;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0