結果

問題 No.52 よくある文字列の問題
ユーザー ゴリポン先生ゴリポン先生
提出日時 2024-09-21 17:31:10
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 4,528 ms
コンパイル使用メモリ 171,468 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 17:31:16
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

module main;

import std;

long solve(string s)
{
	static long[string] memo;
	if (s.length == 1) return 1L;
	if (s !in memo) {
		if (s[0 .. $-1] == s[1 .. $])
			memo[s] = solve(s[0 .. $-1]);
		else
			memo[s] = solve(s[0 .. $-1]) + solve(s[1 .. $]);
	}
	return memo[s];
}

void main()
{
	// 入力
	auto S = readln.chomp;
	// 答えの計算と出力
	writeln(solve(S));
}
0