結果

問題 No.599 回文かい
ユーザー wajima_wataruwajima_wataru
提出日時 2017-11-24 23:27:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 335 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-11-27 08:21:18
合計ジャッジ時間 41,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
20,992 KB
testcase_01 AC 26 ms
17,568 KB
testcase_02 AC 30 ms
20,992 KB
testcase_03 AC 27 ms
20,864 KB
testcase_04 AC 73 ms
16,000 KB
testcase_05 TLE -
testcase_06 AC 27 ms
17,312 KB
testcase_07 AC 29 ms
21,120 KB
testcase_08 AC 28 ms
16,000 KB
testcase_09 TLE -
testcase_10 AC 40 ms
10,624 KB
testcase_11 AC 50 ms
10,368 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 RE -
testcase_15 TLE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
evil_0.txt RE -
権限があれば一括ダウンロードができます

ソースコード

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