結果

問題 No.599 回文かい
ユーザー wajima_wataruwajima_wataru
提出日時 2017-11-24 23:27:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 335 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-05-05 11:38:12
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 66 ms
10,624 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 #

S = input()
num = 1


def get_n(s):
    global num
    for idx in range(len(s)):
        if len(s) <= 1 or idx + 1 > len(s) // 2:
            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)
0