結果

問題 No.346 チワワ数え上げ問題
ユーザー yun_appyun_app
提出日時 2016-05-09 19:28:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,029 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 51,456 KB
最終ジャッジ日時 2024-10-05 13:09:07
合計ジャッジ時間 8,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
41,920 KB
testcase_01 AC 51 ms
37,164 KB
testcase_02 AC 52 ms
37,052 KB
testcase_03 AC 51 ms
36,960 KB
testcase_04 AC 52 ms
37,184 KB
testcase_05 AC 52 ms
36,908 KB
testcase_06 AC 54 ms
36,992 KB
testcase_07 AC 52 ms
37,068 KB
testcase_08 AC 51 ms
36,824 KB
testcase_09 AC 52 ms
36,980 KB
testcase_10 AC 152 ms
43,328 KB
testcase_11 AC 117 ms
43,008 KB
testcase_12 AC 151 ms
43,048 KB
testcase_13 AC 126 ms
42,952 KB
testcase_14 AC 57 ms
36,716 KB
testcase_15 AC 128 ms
42,804 KB
testcase_16 AC 146 ms
43,248 KB
testcase_17 AC 155 ms
43,252 KB
testcase_18 AC 173 ms
43,068 KB
testcase_19 AC 155 ms
43,144 KB
testcase_20 AC 88 ms
39,868 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

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<Integer> w_num = new ArrayList<Integer>();
        for(int i=0;i<line.length();i++){
            char c = line.charAt(i);
            if(c == 'c'){
                w_num.add(0);
            }else if(c == 'w'){
                for(int j=0;j<w_num.size();j++){
                    w_num.set(j,w_num.get(j)+1);
                }
            }
        }
        
        long ans = 0;
        for(int w:w_num){
            ans += combination(w);
        }
        System.out.println(ans);
        
    }
    
    public static int combination(int n){
        return (n * (n-1)) / 2;
    }
}
0