結果

問題 No.346 チワワ数え上げ問題
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 10:19:10
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 714 bytes
コンパイル時間 2,869 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 49,256 KB
最終ジャッジ日時 2024-07-07 18:45:27
合計ジャッジ時間 13,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
46,612 KB
testcase_01 AC 101 ms
40,468 KB
testcase_02 AC 100 ms
41,092 KB
testcase_03 AC 87 ms
39,692 KB
testcase_04 AC 103 ms
40,952 KB
testcase_05 AC 87 ms
40,044 KB
testcase_06 AC 93 ms
39,952 KB
testcase_07 AC 93 ms
40,132 KB
testcase_08 AC 103 ms
40,864 KB
testcase_09 AC 119 ms
41,108 KB
testcase_10 AC 856 ms
43,192 KB
testcase_11 AC 420 ms
41,720 KB
testcase_12 AC 596 ms
42,120 KB
testcase_13 AC 309 ms
42,412 KB
testcase_14 AC 141 ms
41,120 KB
testcase_15 AC 578 ms
43,292 KB
testcase_16 AC 646 ms
42,956 KB
testcase_17 AC 629 ms
42,964 KB
testcase_18 AC 889 ms
42,840 KB
testcase_19 AC 706 ms
42,984 KB
testcase_20 AC 162 ms
41,996 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Chiwawa {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		long all = 0;
		while(str.indexOf("c") != -1){
			int t = str.indexOf("c");
			int count = 0;
			if(str.lastIndexOf("w") < t){
				break;
			}
			for(int i = t;i < str.length();i++){
				if(str.charAt(i) == 'w'){
					count++;
				}
			}
			all += Combination(count,2);
			str.deleteCharAt(t);
		}
		System.out.println(all);

	}
	static int Combination(int r,int q){
		int rCq = 1;
		for(int i = 1;i <= q;i++){
			rCq = rCq * r-- / i;
		}
		return rCq;
	}

}
0