結果

問題 No.346 チワワ数え上げ問題
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-02-26 22:38:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 945 bytes
コンパイル時間 4,029 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 45,560 KB
最終ジャッジ日時 2024-09-22 22:04:02
合計ジャッジ時間 9,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
43,848 KB
testcase_01 AC 148 ms
43,052 KB
testcase_02 AC 143 ms
43,308 KB
testcase_03 AC 145 ms
43,340 KB
testcase_04 AC 147 ms
43,132 KB
testcase_05 AC 132 ms
41,804 KB
testcase_06 AC 147 ms
43,280 KB
testcase_07 AC 148 ms
43,528 KB
testcase_08 AC 147 ms
43,168 KB
testcase_09 AC 147 ms
43,388 KB
testcase_10 AC 225 ms
44,940 KB
testcase_11 AC 204 ms
42,344 KB
testcase_12 AC 230 ms
42,996 KB
testcase_13 AC 215 ms
42,696 KB
testcase_14 AC 154 ms
41,848 KB
testcase_15 AC 211 ms
42,564 KB
testcase_16 AC 235 ms
45,560 KB
testcase_17 AC 235 ms
42,736 KB
testcase_18 AC 229 ms
45,044 KB
testcase_19 AC 235 ms
44,624 KB
testcase_20 AC 243 ms
43,320 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 147 ms
41,452 KB
testcase_24 AC 146 ms
42,020 KB
testcase_25 AC 149 ms
41,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0346 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);
	static boolean debug = false;

	static void solve() {
		String s = in.next();
		int n = s.length();
		long ans = 0;

		int[] f = new int[n+1];

		for (int i=0; i<n; i++) {
			if (s.charAt(i) == 'w') f[i]++;
		}

		for (int i=n-1; i>=0; i--) {
			f[i] += f[i+1];
		}

		for (int i=0; i<n; i++) {
			if (s.charAt(i) != 'c') continue;
			ans += f[i]*(f[i]-1)/2;
		}
		out.println(ans);
	}

	public static void main(String[] args) {
		debug = args.length > 0;
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		dump((end-start) + "ms");
		in.close();
		out.close();
	}

	static void dump(Object... o) { if (debug) System.err.println(Arrays.deepToString(o)); }
}
0