結果

問題 No.346 チワワ数え上げ問題
ユーザー 37zigen37zigen
提出日時 2016-04-11 19:42:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-10-04 06:34:43
合計ジャッジ時間 6,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,732 KB
testcase_01 AC 107 ms
53,932 KB
testcase_02 AC 107 ms
53,760 KB
testcase_03 AC 95 ms
52,540 KB
testcase_04 AC 115 ms
53,876 KB
testcase_05 AC 113 ms
53,852 KB
testcase_06 AC 109 ms
53,716 KB
testcase_07 AC 107 ms
53,764 KB
testcase_08 AC 97 ms
52,856 KB
testcase_09 AC 107 ms
54,100 KB
testcase_10 AC 173 ms
54,424 KB
testcase_11 AC 140 ms
54,060 KB
testcase_12 AC 168 ms
54,504 KB
testcase_13 AC 146 ms
53,868 KB
testcase_14 AC 108 ms
52,932 KB
testcase_15 AC 161 ms
54,552 KB
testcase_16 AC 178 ms
54,576 KB
testcase_17 AC 175 ms
54,496 KB
testcase_18 AC 155 ms
54,340 KB
testcase_19 AC 165 ms
54,772 KB
testcase_20 AC 185 ms
54,444 KB
testcase_21 AC 168 ms
54,260 KB
testcase_22 AC 168 ms
54,504 KB
testcase_23 AC 108 ms
53,736 KB
testcase_24 AC 98 ms
52,672 KB
testcase_25 AC 108 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		long m=0;
		long ans=0;
		for(int i=str.length()-1;i>=0;i--){
			if(str.charAt(i)=='w')m++;
			else if(str.charAt(i)=='c')ans+=combination(m);
		}
		System.out.println(ans);
		sc.close();
	}
	//nC2
	long combination(long n){
		return (n*(n-1))/2;
	}
}
0