結果
問題 |
No.273 回文分解
|
ユーザー |
![]() |
提出日時 | 2017-04-06 17:30:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 2,000 ms |
コード長 | 206 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-25 13:50:28 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
s=input() n=len(s) out=1 for i in range(n): for j in range(i+1,n): if i==0 and j==n-1:continue h=1 st,t=i,j while t-st>0: if s[st]!=s[t]:h=0 st+=1 t-=1 if h:out=max(out,j-i+1) print(out)