結果

問題 No.346 チワワ数え上げ問題
ユーザー ぬるぬるぬるぬる
提出日時 2016-05-15 02:37:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 3,012 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 51,436 KB
最終ジャッジ日時 2024-10-06 03:07:32
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,208 KB
testcase_01 AC 48 ms
50,244 KB
testcase_02 AC 49 ms
50,284 KB
testcase_03 AC 47 ms
50,176 KB
testcase_04 AC 49 ms
50,124 KB
testcase_05 AC 47 ms
50,084 KB
testcase_06 AC 48 ms
49,820 KB
testcase_07 AC 49 ms
50,140 KB
testcase_08 AC 48 ms
49,796 KB
testcase_09 AC 47 ms
50,212 KB
testcase_10 AC 65 ms
50,824 KB
testcase_11 AC 57 ms
50,408 KB
testcase_12 AC 62 ms
50,444 KB
testcase_13 AC 59 ms
50,692 KB
testcase_14 AC 49 ms
50,156 KB
testcase_15 AC 63 ms
50,492 KB
testcase_16 AC 67 ms
50,980 KB
testcase_17 AC 82 ms
51,436 KB
testcase_18 AC 70 ms
51,276 KB
testcase_19 AC 67 ms
51,000 KB
testcase_20 AC 67 ms
51,096 KB
testcase_21 AC 66 ms
51,164 KB
testcase_22 AC 81 ms
51,160 KB
testcase_23 AC 47 ms
50,152 KB
testcase_24 AC 47 ms
50,200 KB
testcase_25 AC 48 ms
50,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Test346 {

	public static void main(String[] args) {
		long result = 0;
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		try {
			long count_w = 0;
			String str = br.readLine();
			char[] ch = str.toCharArray();
			for(int i=ch.length-1;i>=0;i--){
				if(ch[i]=='w'){
					count_w++;
				}else if(ch[i]=='c'){
					if(count_w >= 2){
						result += count_w * (count_w - 1) / 2 ;
					}
				}
			}
			System.out.println(result);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0