結果
問題 | No.599 回文かい |
ユーザー | ikd |
提出日時 | 2017-11-25 12:23:52 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 816 ms |
コンパイル使用メモリ | 96,296 KB |
実行使用メモリ | 114,136 KB |
最終ジャッジ日時 | 2024-06-12 22:40:30 |
合計ジャッジ時間 | 1,913 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
evil_0.txt | WA | - |
ソースコード
void main(){ import std.stdio, std.string, std.conv, std.algorithm; auto s=readln.chomp.to!(char[]); int[] zAlgorithm(char[] _s){ auto _n=to!(int)(_s.length); auto z=new int[](_n); if(_n==0) return z; z[0]=_n; int _i=1, _j=0; // s[0, j), s[i, i+j) while(_i<_n){ while(_i+_j<_n && _s[_j]==_s[_i+_j]) _j++; z[_i]=_j; if(_j==0){_i++; continue;} auto k=1; while(_i+k<_n && k+z[k]<_j) z[_i+k]=z[k], k++; // s[k, k+z[k]) in s[k, j) _i+=k; _j-=k; // s[0, j-k) == s[i+k, j) } return z; } auto mm=new long[](s.length/2+1); fill(mm, -1); const long mod=1_000_000_000+7; long fun(int i){ if(mm[i]>=0) return mm[i]; auto t=s[i..($-i-1)]; long ret=1; auto z=zAlgorithm(t); for(int j=1; j<=(t.length/2); j++){ if(j==z[$-j]) (ret+=fun(i+j))%=mod; } return mm[i]=ret; } writeln(fun(0)); } void rd(T...)(ref T x){ import std.stdio, std.string, std.conv; auto l=readln.split; assert(l.length==x.length); foreach(i, ref e; x){ e=l[i].to!(typeof(e)); } }