結果
問題 | No.464 PPAP |
ユーザー | ciel |
提出日時 | 2016-12-16 00:10:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 739 ms / 2,000 ms |
コード長 | 546 bytes |
コンパイル時間 | 508 ms |
コンパイル使用メモリ | 53,632 KB |
実行使用メモリ | 27,584 KB |
最終ジャッジ日時 | 2024-05-07 15:19:18 |
合計ジャッジ時間 | 2,244 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 31 ms
8,572 KB |
testcase_08 | AC | 4 ms
8,832 KB |
testcase_09 | AC | 3 ms
9,284 KB |
testcase_10 | AC | 739 ms
27,348 KB |
testcase_11 | AC | 15 ms
23,120 KB |
testcase_12 | AC | 22 ms
27,536 KB |
testcase_13 | AC | 7 ms
27,192 KB |
testcase_14 | AC | 31 ms
27,584 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 7 ms
27,136 KB |
testcase_24 | AC | 7 ms
27,104 KB |
testcase_25 | AC | 7 ms
27,116 KB |
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 1 | #import<vector> | ^~~~~~ main.cpp:2:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 2 | #import<algorithm> | ^~~~~~ main.cpp:3:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 3 | #import<cstdio> | ^~~~~~ main.cpp:4:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 4 | #import<cstring> | ^~~~~~
ソースコード
#import<vector> #import<algorithm> #import<cstdio> #import<cstring> char s[5001]; bool f[5000][5000]; int main(){ long long r=0; scanf("%s",s); int len=strlen(s); for(int i=0;i<len;i++)for(int k=0;k<2;k++){ for(int j=0;0<=i-j&&i+j+k<len;j++){ if(s[i-j]!=s[i+j+k])break; f[i-j][i+j+k]=true; } } std::vector<int>H,T; for(int i=0;i<len;i++){if(f[0][i])H.push_back(i);if(f[i][len-1])T.push_back(i);} for(auto &e:H){ for(int i=e+1;i<len;i++)if(f[e+1][i])r+=T.end()-std::lower_bound(T.begin(),T.end(),i+2); } printf("%lld\n",r); }