結果
問題 | No.599 回文かい |
ユーザー | Lepton_s |
提出日時 | 2017-11-24 22:39:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,436 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 95,336 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-11-27 07:33:09 |
合計ジャッジ時間 | 61,586 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,024 KB |
testcase_01 | AC | 2 ms
9,892 KB |
testcase_02 | AC | 2 ms
10,148 KB |
testcase_03 | AC | 2 ms
13,636 KB |
testcase_04 | AC | 9 ms
10,152 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 2 ms
10,020 KB |
testcase_07 | AC | 2 ms
10,276 KB |
testcase_08 | AC | 2 ms
13,636 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 6 ms
10,144 KB |
testcase_11 | AC | 6 ms
10,016 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
evil_0.txt | TLE | - |
ソースコード
#include <algorithm> #include <climits> #include <cmath> #include <cstdio> #include <cstdlib> #include <ctime> #include <iostream> #include <sstream> #include <functional> #include <map> #include <string> #include <cstring> #include <vector> #include <queue> #include <stack> #include <deque> #include <set> #include <list> #include <numeric> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> P; const double PI = 3.14159265358979323846; const double EPS = 1e-12; const ll INF = 1LL<<29; const ll mod = 1e9+7; #define rep(i,n) for(int (i)=0;(i)<(ll)(n);++(i)) #define repd(i,n,d) for(ll (i)=0;(i)<(ll)(n);(i)+=(d)) #define all(v) (v).begin(), (v).end() #define pb(x) push_back(x) #define mp(x,y) make_pair((x),(y)) #define mset(m,v) memset((m),(v),sizeof(m)) #define chmin(X,Y) ((X)>(Y)?X=(Y),true:false) #define chmax(X,Y) ((X)<(Y)?X=(Y),true:false) #define fst first #define snd second #define UNIQUE(x) (x).erase(unique(all(x)),(x).end()) template<class T> ostream &operator<<(ostream &os, const vector<T> &v){int n=v.size();rep(i,n)os<<v[i]<<(i==n-1?"":" ");return os;} string s; int n; #define N 10010 //ll dp[N][N]; ll solve(ll l, ll r){ if(r-l<=1) return 1; ll res = 1; for(ll i = 1; 2*i<=r-l; i++){ if(s.substr(l, i)==s.substr(r-i, i)){ res += solve(l+i, r-i); } } res %= mod; return res; } int main(){ cin>>s; n = s.size(); cout<<solve(0, n)<<endl; return 0; }