結果
問題 | No.599 回文かい |
ユーザー | aaaaa |
提出日時 | 2018-01-10 23:07:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,126 bytes |
コンパイル時間 | 1,253 ms |
コンパイル使用メモリ | 111,616 KB |
実行使用メモリ | 395,464 KB |
最終ジャッジ日時 | 2024-06-06 05:26:26 |
合計ジャッジ時間 | 10,360 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 160 ms
188,032 KB |
testcase_11 | AC | 95 ms
111,488 KB |
testcase_12 | AC | 182 ms
212,576 KB |
testcase_13 | AC | 115 ms
124,160 KB |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 2 ms
6,948 KB |
testcase_19 | AC | 3 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
evil_0.txt | MLE | - |
ソースコード
#include <iostream> #include <stdio.h> #include <cstring> #include <math.h> #include <algorithm> #include <vector> #include <string> #include <stdlib.h> #include <queue> #include <stack> #include <utility> #include <fstream> #include <random> #include <map> #include <unordered_map> #define rep(i,n) for(int i=0;i<n;i++) #define rrep(i,n) for(int i=n-1;i>=0;i--) #define FOR(i,a,b) for(int i=a;i<b;i++) #define ll long long #define INF 1000000001 #define mod 1000000007 #define p pair<int,int> int dx[4]={0,1,0,-1}; int dy[4]={1,0,-1,0}; using namespace std; int POW(int x,int y){return int(pow(double(x),double(y)));} vector<vector<int>> a; string s; int f(int x,int y){ if(a[x][y]>0){ return a[x][y]; } if(x==y){ return 1; } a[x][y]=1; rep(i,(y-x+1)/2){ if(s.substr(x,i+1) == s.substr(y-i,i+1)){ if((x+i+1)-(y-i-1)==1){ a[x][y]++; a[x][y]=a[x][y]%mod; }else{ a[x][y]+=f(x+i+1,y-i-1); a[x][y]=a[x][y]%mod; } } } return a[x][y]; } int main(){ cin>>s; int ss=s.size(); a.resize(ss); rep(i,ss){ a[i].resize(ss); rep(j,ss){ a[i][j]=0; } } cout<<f(0,ss-1)<<endl; }