結果

問題 No.346 チワワ数え上げ問題
ユーザー nglkrianbrjfnglkrianbrjf
提出日時 2016-02-27 01:11:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 3,482 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 51,268 KB
最終ジャッジ日時 2024-09-24 10:55:25
合計ジャッジ時間 5,573 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,340 KB
testcase_01 AC 52 ms
50,080 KB
testcase_02 AC 53 ms
50,212 KB
testcase_03 AC 53 ms
50,088 KB
testcase_04 AC 52 ms
50,276 KB
testcase_05 AC 52 ms
50,276 KB
testcase_06 AC 53 ms
50,288 KB
testcase_07 AC 52 ms
50,264 KB
testcase_08 AC 53 ms
50,284 KB
testcase_09 AC 52 ms
50,356 KB
testcase_10 AC 76 ms
50,972 KB
testcase_11 AC 68 ms
50,624 KB
testcase_12 AC 72 ms
50,968 KB
testcase_13 AC 66 ms
50,320 KB
testcase_14 AC 53 ms
50,456 KB
testcase_15 AC 68 ms
50,876 KB
testcase_16 AC 72 ms
51,096 KB
testcase_17 AC 76 ms
51,268 KB
testcase_18 AC 76 ms
51,204 KB
testcase_19 AC 73 ms
51,116 KB
testcase_20 AC 76 ms
51,076 KB
testcase_21 AC 76 ms
51,204 KB
testcase_22 AC 77 ms
51,008 KB
testcase_23 AC 51 ms
50,272 KB
testcase_24 AC 52 ms
50,336 KB
testcase_25 AC 52 ms
50,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class QuestionB {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		String line;

		try{
			line = in.readLine();
		}catch(IOException e){
			System.out.println("0");
			return;
		}

		long result = 0;
		long wcount = 0;

		for(int i = line.length() - 1; i >= 0; i--){
			char k = line.charAt(i);
			if(k == 'c')
				result += wcount * (wcount - 1)/2;
			if(k == 'w')
				wcount++;
		}

		System.out.println(result);
	}

}
0