結果

問題 No.588 空白と回文
ユーザー KoshStormKoshStorm
提出日時 2017-11-03 23:26:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-23 14:55:00
合計ジャッジ時間 15,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S = list(input())
l = len(S) -1


def solve(i,j):
	global S
	count = 0
	while i <= j:
		#print("i:",i,"j:",j)
		if S[i] == S[j]:
			if i == j:
				count += 1
			else:
				count += 2
		i += 1
		j -= 1

	return count

prev_count = 0
for i in range(l):
	for j in range(i+1):
		if prev_count >= l - i:
			print(prev_count)
			exit(0)

		count = solve(i+j,l-j)

		#print("count:",count)

		if prev_count < count:
			prev_count = count



print(prev_count)
0