結果

問題 No.346 チワワ数え上げ問題
ユーザー めうめう🎒めうめう🎒
提出日時 2016-10-21 00:58:12
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 73,360 KB
実行使用メモリ 13,816 KB
最終ジャッジ日時 2024-11-23 15:58:25
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,360 KB
testcase_01 AC 4 ms
7,432 KB
testcase_02 AC 3 ms
7,320 KB
testcase_03 AC 3 ms
7,296 KB
testcase_04 AC 3 ms
7,368 KB
testcase_05 AC 4 ms
7,236 KB
testcase_06 AC 4 ms
7,392 KB
testcase_07 AC 4 ms
7,216 KB
testcase_08 AC 4 ms
7,276 KB
testcase_09 AC 3 ms
7,316 KB
testcase_10 AC 15 ms
13,716 KB
testcase_11 AC 10 ms
11,008 KB
testcase_12 AC 12 ms
12,316 KB
testcase_13 AC 9 ms
10,644 KB
testcase_14 AC 4 ms
7,520 KB
testcase_15 AC 11 ms
11,888 KB
testcase_16 AC 12 ms
12,684 KB
testcase_17 AC 16 ms
13,696 KB
testcase_18 AC 15 ms
13,796 KB
testcase_19 AC 13 ms
12,884 KB
testcase_20 AC 14 ms
13,816 KB
testcase_21 AC 15 ms
13,796 KB
testcase_22 AC 14 ms
13,688 KB
testcase_23 AC 4 ms
7,296 KB
testcase_24 AC 4 ms
7,192 KB
testcase_25 AC 4 ms
7,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

string str;
ll memo[100010][5] = {};

ll dp(int now, int check){
	ll count = 0;

	if(check == 3) return 1;
	if(now == str.size()) return 0;
	if(memo[now][check] != INFLL) return memo[now][check];

	if(check == 0){
		if(str[now] == 'c'){
			count += dp(now + 1, check + 1);
		}
	}else if(check == 1 || check == 2){
		if(str[now] == 'w'){
			count += dp(now + 1, check + 1);
		}
	}

	count += dp(now + 1,check);

	return memo[now][check] = count;
}

int main() {
	for(int i = 0;i < 100010;i++){
		for(int j = 0;j < 5;j++){
			memo[i][j] = INFLL;
		}
	}

	cin >> str;

	cout << dp(0, 0) << endl;
	return 0;
}
0