結果

問題 No.588 空白と回文
ユーザー BQZetBQZet
提出日時 2017-12-21 15:27:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-10 02:19:52
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 402 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 31 ms
10,624 KB
testcase_15 WA -
testcase_16 AC 33 ms
10,752 KB
testcase_17 AC 256 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
X=[]
S=str(input())
for i in range(1,len(S)):
	if i<=math.floor(len(S)/2):
		Xi=1+2*i
	else:
		Xi=1+2*(len(S)-i-1)
	Xi=1+2*i
	for j in range(1,i+1):
		if S[i-j:i-j+1]!=S[i+j:i+j+1]:
			Xi=Xi-2
		if j==i:
			X.append(Xi)
print (max(X))
0