結果

問題 No.599 回文かい
ユーザー KoshStormKoshStorm
提出日時 2017-11-24 23:38:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 422 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-05-05 11:42:53
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 36 ms
10,624 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 39 ms
10,496 KB
testcase_11 AC 37 ms
10,624 KB
testcase_12 AC 56 ms
10,752 KB
testcase_13 AC 78 ms
10,880 KB
testcase_14 RE -
testcase_15 AC 294 ms
11,776 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
evil_0.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=None)
def is_kaibun (S):
	l = len(S)
	left_index = 1
	right_index = l-1
	count = 1



	while left_index-1 < right_index:
		if S[0:left_index] == S[right_index:]:
			count += is_kaibun(S[left_index:right_index])

		left_index += 1
		right_index -= 1
	

	return count
			

if __name__ == "__main__":
	S = input()
	l = len(S)

	ans = is_kaibun(S) % 1000000007

	print(ans)

0