結果

問題 No.588 空白と回文
ユーザー pluto77pluto77
提出日時 2017-11-19 12:36:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,665 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-05-04 11:43:41
合計ジャッジ時間 11,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
75,392 KB
testcase_01 AC 87 ms
75,520 KB
testcase_02 AC 86 ms
75,520 KB
testcase_03 AC 995 ms
77,696 KB
testcase_04 AC 88 ms
75,520 KB
testcase_05 AC 88 ms
75,264 KB
testcase_06 AC 100 ms
77,952 KB
testcase_07 AC 86 ms
75,904 KB
testcase_08 AC 88 ms
76,288 KB
testcase_09 AC 89 ms
75,648 KB
testcase_10 AC 90 ms
76,160 KB
testcase_11 AC 1,009 ms
78,080 KB
testcase_12 AC 1,004 ms
77,696 KB
testcase_13 AC 90 ms
76,160 KB
testcase_14 AC 88 ms
75,648 KB
testcase_15 AC 88 ms
75,520 KB
testcase_16 AC 88 ms
75,776 KB
testcase_17 AC 1,138 ms
77,696 KB
testcase_18 AC 95 ms
77,440 KB
testcase_19 AC 87 ms
75,776 KB
testcase_20 AC 1,238 ms
77,824 KB
testcase_21 AC 1,665 ms
77,824 KB
testcase_22 AC 1,259 ms
77,824 KB
testcase_23 AC 1,022 ms
77,568 KB
testcase_24 AC 89 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_588

s=raw_input()
res=0
for i in xrange(len(s)):
 for j in xrange(i,len(s)):
  cnt=0
  for k in xrange(j-i+1):
   if s[i+k]==s[j-k]:
    cnt+=1
  res=max(res,cnt)
print res
0