結果

問題 No.273 回文分解
ユーザー McGregorshMcGregorsh
提出日時 2023-05-14 23:51:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 61,612 KB
最終ジャッジ日時 2024-05-07 15:50:03
合計ジャッジ時間 3,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,476 KB
testcase_01 AC 32 ms
52,964 KB
testcase_02 AC 34 ms
53,212 KB
testcase_03 AC 34 ms
53,572 KB
testcase_04 AC 34 ms
52,280 KB
testcase_05 AC 36 ms
52,732 KB
testcase_06 AC 34 ms
53,572 KB
testcase_07 AC 33 ms
52,272 KB
testcase_08 AC 35 ms
53,688 KB
testcase_09 AC 34 ms
52,884 KB
testcase_10 AC 34 ms
53,804 KB
testcase_11 AC 35 ms
52,744 KB
testcase_12 AC 34 ms
52,992 KB
testcase_13 AC 34 ms
53,620 KB
testcase_14 AC 38 ms
61,612 KB
testcase_15 AC 33 ms
52,128 KB
testcase_16 AC 34 ms
52,332 KB
testcase_17 AC 34 ms
53,704 KB
testcase_18 AC 33 ms
53,340 KB
testcase_19 AC 34 ms
52,588 KB
testcase_20 AC 34 ms
52,896 KB
testcase_21 AC 34 ms
52,912 KB
testcase_22 AC 39 ms
60,036 KB
testcase_23 AC 39 ms
60,104 KB
testcase_24 AC 37 ms
59,916 KB
testcase_25 AC 40 ms
60,520 KB
testcase_26 AC 38 ms
59,684 KB
testcase_27 AC 39 ms
61,328 KB
testcase_28 AC 39 ms
59,912 KB
testcase_29 AC 36 ms
53,940 KB
testcase_30 AC 38 ms
59,808 KB
testcase_31 AC 35 ms
52,684 KB
testcase_32 AC 34 ms
52,980 KB
testcase_33 AC 33 ms
52,128 KB
testcase_34 AC 33 ms
52,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
   
   S = input()
   lenS = len(S)
   
   ans = 0
   for i in range(lenS-1):
   	  for j in range(i, lenS):
   	  	  p = S[i:j+1]
   	  	  if p == p[::-1]:
   	  	  	  if j - i + 1 == lenS:
   	  	  	  	  continue
   	  	  	  ans = max(ans, j - i + 1)
   	  	  	  
   print(ans)
   
if __name__ == '__main__':
    main()
    
0