結果

問題 No.599 回文かい
ユーザー KoshStormKoshStorm
提出日時 2017-11-24 22:56:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 368 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-05-05 11:18:52
合計ジャッジ時間 5,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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