結果

問題 No.346 チワワ数え上げ問題
ユーザー yun_appyun_app
提出日時 2016-05-09 19:39:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 53,364 KB
最終ジャッジ日時 2024-10-05 13:09:36
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,976 KB
testcase_01 AC 46 ms
50,028 KB
testcase_02 AC 47 ms
49,720 KB
testcase_03 AC 46 ms
49,980 KB
testcase_04 AC 48 ms
50,084 KB
testcase_05 AC 49 ms
50,356 KB
testcase_06 AC 50 ms
50,172 KB
testcase_07 AC 49 ms
49,612 KB
testcase_08 AC 49 ms
50,004 KB
testcase_09 AC 51 ms
49,504 KB
testcase_10 AC 76 ms
51,276 KB
testcase_11 AC 66 ms
50,540 KB
testcase_12 AC 73 ms
51,112 KB
testcase_13 AC 66 ms
50,580 KB
testcase_14 AC 51 ms
49,692 KB
testcase_15 AC 66 ms
50,716 KB
testcase_16 AC 66 ms
51,072 KB
testcase_17 AC 74 ms
51,084 KB
testcase_18 AC 72 ms
51,048 KB
testcase_19 AC 70 ms
50,904 KB
testcase_20 AC 79 ms
51,004 KB
testcase_21 AC 83 ms
53,364 KB
testcase_22 AC 83 ms
52,960 KB
testcase_23 AC 50 ms
49,880 KB
testcase_24 AC 50 ms
50,120 KB
testcase_25 AC 49 ms
50,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

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

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        ArrayList<Long> w_num = new ArrayList<Long>();
        long w_cnt = 0;
        for(int i=line.length()-1;i>=0;i--){
            char c = line.charAt(i);
            if(c == 'c'){
                w_num.add(w_cnt);
            }else if(c == 'w'){
                w_cnt++;
            }
        }
        
        long ans = 0;
        for(long w:w_num){
            ans += combination(w);
        }
        System.out.println(ans);
        
    }
    
    public static long combination(long n){
        return (n * (n-1)) / 2;
    }
}
0