結果

問題 No.273 回文分解
ユーザー NagisaNagisa
提出日時 2015-08-28 23:20:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-25 13:25:09
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

L = [str(x) for x in str(input())]
n = len(L)
c = 1

for m in range(0, n):
    for l in range(0, n - m + 1):
        M = L[l: l + m]
        N = M[::-1]
        if M == N and c < m:
            c = m

if n == 2:
    print('1')
else:
    print(c)
0