結果

問題 No.346 チワワ数え上げ問題
ユーザー ぴろずぴろず
提出日時 2016-02-26 22:29:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 56,788 KB
最終ジャッジ日時 2024-09-22 14:08:10
合計ジャッジ時間 7,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,164 KB
testcase_01 AC 127 ms
54,116 KB
testcase_02 AC 122 ms
54,228 KB
testcase_03 AC 110 ms
53,000 KB
testcase_04 AC 133 ms
54,144 KB
testcase_05 AC 124 ms
54,160 KB
testcase_06 AC 126 ms
53,840 KB
testcase_07 AC 128 ms
53,972 KB
testcase_08 AC 129 ms
54,228 KB
testcase_09 AC 128 ms
54,192 KB
testcase_10 AC 205 ms
56,240 KB
testcase_11 AC 180 ms
56,244 KB
testcase_12 AC 205 ms
56,520 KB
testcase_13 AC 177 ms
54,060 KB
testcase_14 AC 138 ms
54,060 KB
testcase_15 AC 194 ms
56,484 KB
testcase_16 AC 202 ms
56,512 KB
testcase_17 AC 205 ms
56,272 KB
testcase_18 AC 201 ms
56,408 KB
testcase_19 AC 204 ms
56,508 KB
testcase_20 AC 201 ms
56,788 KB
testcase_21 AC 195 ms
56,416 KB
testcase_22 AC 208 ms
56,380 KB
testcase_23 AC 129 ms
54,228 KB
testcase_24 AC 121 ms
53,948 KB
testcase_25 AC 126 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no346;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int n = s.length;
		long ans = 0;
		long[][] dp = new long[2][n+1];
		for(int i=0;i<n;i++) {
			if (s[i] == 'c') {
				dp[0][i+1] += 1;
			}else if(s[i] == 'w') {
				dp[1][i+1] = dp[0][i];
				ans += dp[1][i];
			}
			dp[0][i+1] += dp[0][i];
			dp[1][i+1] += dp[1][i];
		}
		System.out.println(ans);
	}

}
0