結果

問題 No.273 回文分解
ユーザー 184184
提出日時 2015-08-28 22:51:27
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 34,780 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 01:07:58
合計ジャッジ時間 1,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 0 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 0 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 0 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         char s[51];scanf("%s",s);
      |                    ~~~~~^~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cstdlib>

using namespace std;

//namaega184 

int main(){
	char s[51];scanf("%s",s);
	int len=strlen(s),ans=1; 
	int cnt=0;
	for(int i=0;i<len;i++){
		for(int j=i+1;j<len;j++){
			bool f=1;
			for(int a=i,b=j;a<b;a++,b--){
				if(s[a]!=s[b]){f=0;break;}
			}
			if(f){if(ans!=len&&j+1-i>ans)ans=j-i;}
		}
	}
	printf("%d\n",ans);
	return 0;
}
0