結果
問題 | No.52 よくある文字列の問題 |
ユーザー | 184 |
提出日時 | 2014-10-29 00:08:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 39,360 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 17:36:44 |
合計ジャッジ時間 | 891 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:26:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | char s[101];scanf("%s",s); | ~~~~~^~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include <algorithm> using namespace std; //namaega 184 int ans=0; int dfs(char *s,char *m,int len,int n,int fst,int lst){ if(n==len){ ans++; return 0; } m[n]=s[fst]; dfs(s,m,len,n+1,fst+1,lst); if(s[fst]!=s[lst]){ m[n]=s[lst]; dfs(s,m,len,n+1,fst,lst-1); } return 0; } int main(){ char s[101];scanf("%s",s); int len=strlen(s); int fst=0,lst=len-1; if(len==1){ printf("1\n"); return 0; } char m[101]={}; dfs(s,m,len,0,fst,lst); printf("%d\n",ans); return 0; }