結果
問題 | No.599 回文かい |
ユーザー | Takaten |
提出日時 | 2017-11-24 23:58:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,679 bytes |
コンパイル時間 | 1,817 ms |
コンパイル使用メモリ | 173,500 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 11:47:03 |
合計ジャッジ時間 | 2,905 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
evil_0.txt | WA | - |
ソースコード
#include <bits/stdc++.h> #define pb push_back #define mp make_pair #define INF 120000000 #define MOD 1000000007 using namespace std; typedef pair<int, int> P; typedef long long int LL; int main() { string s; cin >> s; int n = s.size(); vector<string> t; string f = "", b = ""; int l = 0, r = n - 1; while (l < r) { f += s[l]; b = s[r] + b; l++; r--; if (f == b) { t.pb(f); f = ""; b = ""; } } // for (int i = 0; i < t.size(); i++) { // cout << t[i] << endl; // } LL ans = 1; LL cnt = 0; for (int i = t.size() - 1; i >= 0; i--) { if (t[i].size() == 1 && i > 0) { int cnt = 0; int j = i - 1; string tmp = t[i]; while (t[j].size() == 1 && j >= 0) { tmp += t[j]; // cout << "tmp = " << tmp << endl; if (tmp.size() % 2 == 0) { // cout << tmp.substr(0, tmp.size() / 2) << " " << tmp.substr(tmp.size() / 2) << endl; if (tmp.substr(0, tmp.size() / 2) == tmp.substr(tmp.size() / 2)) { cnt++; } } else { // cout << tmp.substr(0, tmp.size() / 2) << " " << tmp.substr(tmp.size() / 2 + 1) << endl; if (tmp.substr(0, tmp.size() / 2) == tmp.substr(tmp.size() / 2 + 1)) { cnt++; } } j--; } ans = ans * (1 + cnt); ans %= MOD; } ans++; } cout << ans % MOD << endl; return 0; }