結果

問題 No.346 チワワ数え上げ問題
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-22 15:21:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 42,556 KB
最終ジャッジ日時 2024-10-01 12:15:08
合計ジャッジ時間 6,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,076 KB
testcase_01 AC 120 ms
40,276 KB
testcase_02 AC 115 ms
40,204 KB
testcase_03 AC 114 ms
41,116 KB
testcase_04 AC 117 ms
41,032 KB
testcase_05 AC 107 ms
40,056 KB
testcase_06 AC 107 ms
40,028 KB
testcase_07 AC 108 ms
41,196 KB
testcase_08 AC 102 ms
39,700 KB
testcase_09 AC 105 ms
39,964 KB
testcase_10 AC 172 ms
42,024 KB
testcase_11 AC 153 ms
41,908 KB
testcase_12 AC 177 ms
41,972 KB
testcase_13 AC 151 ms
41,848 KB
testcase_14 AC 119 ms
40,824 KB
testcase_15 AC 170 ms
42,556 KB
testcase_16 AC 174 ms
41,980 KB
testcase_17 AC 167 ms
41,936 KB
testcase_18 AC 156 ms
42,332 KB
testcase_19 AC 173 ms
42,448 KB
testcase_20 AC 170 ms
41,920 KB
testcase_21 AC 167 ms
42,552 KB
testcase_22 AC 167 ms
42,480 KB
testcase_23 AC 119 ms
41,192 KB
testcase_24 AC 106 ms
40,108 KB
testcase_25 AC 116 ms
40,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		long w = 0;
		long num = 0;
		for (int i=s.length()-1; i>=0; i--) {
			if (s.charAt(i)=='w') {w++;}
			if (s.charAt(i)=='c') {
				num += w*(w-1)/2;
			}
		}
		System.out.println(num);
	}
}
0