結果

問題 No.464 PPAP
ユーザー square1001square1001
提出日時 2017-03-08 12:56:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 66,340 KB
実行使用メモリ 27,644 KB
最終ジャッジ日時 2024-06-23 18:52:42
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 6 ms
8,724 KB
testcase_08 AC 5 ms
8,552 KB
testcase_09 AC 5 ms
8,796 KB
testcase_10 AC 156 ms
27,644 KB
testcase_11 AC 95 ms
21,632 KB
testcase_12 AC 149 ms
26,880 KB
testcase_13 AC 145 ms
27,264 KB
testcase_14 AC 145 ms
27,136 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 146 ms
23,680 KB
testcase_24 AC 143 ms
23,552 KB
testcase_25 AC 144 ms
23,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <iostream>
using namespace std;
string s; int cnt[5005]; bool dp[5005][5005];
int main() {
	cin >> s;
	int n = s.size();
	for (int i = 0; i < n; i++) dp[i][i] = dp[i][i + 1] = true;
	for (int i = 2; i <= n; i++) {
		for (int l = 0; l <= n - i; l++) {
			int r = l + i;
			if (dp[l + 1][r - 1] && s[l] == s[r - 1]) dp[l][r] = true;
		}
	}
	for (int i = 1; i <= n; i++) {
		for (int j = i + 1; j <= n; j++) {
			if (dp[0][i] && dp[i][j]) cnt[j]++;
		}
	}
	long long ret = 0;
	for (int i = 0; i < n; i++) {
		for (int j = i + 1; j < n; j++) {
			if (dp[j][n]) ret += cnt[i];
		}
	}
	cout << ret << endl;
	return 0;
}
0