結果

問題 No.599 回文かい
ユーザー wajima_wataruwajima_wataru
提出日時 2017-11-25 00:03:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 487 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-05-05 11:47:56
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S = input()
num = 1
s_parent = S
nums = {}


def get_n(s):
    global num
    if nums.get(s):
        num += nums[s]
        return
    start_num = num
    for idx in range(len(s)):
        if len(s) <= 1 or idx + 1 > len(s) // 2:
            nums[s] = num - start_num
            return
        if s[idx] == s[len(s) - 1]:
            if s[:idx + 1] == s[len(s) - idx - 1:]:
                num += 1
                get_n(s[idx + 1:len(s) - idx - 1])


get_n(S)
print(num % 1000000007)
0