結果
問題 | No.273 回文分解 |
ユーザー | ishizu |
提出日時 | 2015-08-28 22:37:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,004 bytes |
コンパイル時間 | 819 ms |
コンパイル使用メモリ | 70,864 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 01:05:48 |
合計ジャッジ時間 | 1,596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
#include<iostream> #include<cstdio> #include<vector> #include<queue> #include<map> #include<set> #include<string> #include<algorithm> #include<functional> using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) for (int i=0;i<(n);i++) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) #define INF 1<<30 #define MP make_pair #define mp make_pair #define pb push_back #define PB push_back #define DEBUG(x) cout<<#x<<": "<<x<<endl #define ll long long #define ull unsigned long long bool kai(string s){ int n=s.size(); bool f=true; REP(i,n){ if(s[i]!=s[n-1-i]) return false; } return true; } int main(){ cin.tie(0); ios::sync_with_stdio(false); string s;cin>>s; int n=s.size(); int l=0; REP(i,n){ FOR(j,i+1,n+1){ // cout<<s.substr(i,j-i)<<endl; if(kai(s.substr(i,j-i))) l=max(l,j-i); } } if(l<n) cout<<l<<endl; bool f=true; REP(i,n){ if (s[i]!=s[0]) f=false; } if(f) cout<<n-1<<endl; return n-2; }