結果

問題 No.1617 Palindrome Removal
ユーザー pengin_2000pengin_2000
提出日時 2021-07-22 21:35:45
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-17 16:45:14
合計ジャッジ時間 1,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	char s[1000006];
	scanf("%s", s);
	int i, n = 0;
	while (s[n] != '\0')
		n++;
	int cnt = 0;
	for (i = 0; i < n / 2; i++)
		if (s[i] != s[n - i - 1])
			cnt++;
	if (cnt > 0)
	{
		printf("%d\n", n);
		return 0;
	}
	for (i = 0; i < n / 2; i++)
		if (s[i] != s[0])
			cnt++;
	if (cnt > 0)
	{

		printf("%d\n", n - 2);
		return 0;
	}
	if (n % 2 == 0)
		printf("0\n");
	else if (s[0] != s[(n - 1) / 2] && n >= 5)
		printf("%d\n", n - 2);
	else
		printf("-1\n");
	return 0;
}
0