結果

問題 No.346 チワワ数え上げ問題
ユーザー atkrymatkrym
提出日時 2016-10-22 18:43:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 75,708 KB
実行使用メモリ 55,028 KB
最終ジャッジ日時 2024-11-23 17:16:52
合計ジャッジ時間 7,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,004 KB
testcase_01 AC 119 ms
40,136 KB
testcase_02 AC 134 ms
41,580 KB
testcase_03 AC 132 ms
41,480 KB
testcase_04 AC 130 ms
41,548 KB
testcase_05 AC 127 ms
41,152 KB
testcase_06 AC 117 ms
39,956 KB
testcase_07 AC 132 ms
41,196 KB
testcase_08 AC 118 ms
40,180 KB
testcase_09 AC 139 ms
40,888 KB
testcase_10 AC 215 ms
42,856 KB
testcase_11 AC 189 ms
42,148 KB
testcase_12 AC 207 ms
42,572 KB
testcase_13 AC 184 ms
41,916 KB
testcase_14 AC 148 ms
41,328 KB
testcase_15 AC 199 ms
42,172 KB
testcase_16 AC 209 ms
42,512 KB
testcase_17 AC 209 ms
42,688 KB
testcase_18 AC 207 ms
42,724 KB
testcase_19 AC 215 ms
42,432 KB
testcase_20 AC 221 ms
42,296 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 128 ms
41,340 KB
testcase_24 AC 128 ms
41,224 KB
testcase_25 AC 133 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        int l = s.length();
        int[] ary = new int[l];
        
        int cnt = 0;
        for (int i = l-1;i >= 0;i--) {
            if (s.charAt(i) == 'w') cnt++;
            ary[i] = cnt;
        }
        
        long ret = 0;
        for (int i = 0;i < l;i++) {
            if (s.charAt(i) == 'c' && ary[i] >= 2) ret += comb(ary[i]);
        }
        
        System.out.println(ret);
    }
    
    private static long comb(int i) {
        return i * (i-1) / 2;
    }
}
0