結果

問題 No.599 回文かい
ユーザー koromooo_koromooo_
提出日時 2017-11-25 00:01:59
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-11-27 08:38:15
合計ジャッジ時間 41,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,392 KB
testcase_01 AC 11 ms
12,160 KB
testcase_02 AC 10 ms
11,392 KB
testcase_03 AC 9 ms
11,520 KB
testcase_04 AC 34 ms
12,672 KB
testcase_05 TLE -
testcase_06 AC 10 ms
11,520 KB
testcase_07 AC 10 ms
11,392 KB
testcase_08 AC 9 ms
13,440 KB
testcase_09 TLE -
testcase_10 AC 20 ms
12,672 KB
testcase_11 AC 25 ms
11,520 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 = raw_input()
count = 1

def look_for_kai(st):
    global count
    left = 0
    right = len(st) - 1
    while True:
        if(left >= right):
            break
        if(st[:left+1] == st[right:]):
            count+=1
            look_for_kai(st[left+1:right])
        left += 1
        right -= 1

look_for_kai(s)
print count%1000000007
0