結果
問題 |
No.588 空白と回文
|
ユーザー |
![]() |
提出日時 | 2025-07-11 00:28:51 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 303 ms / 2,000 ms |
コード長 | 627 bytes |
コンパイル時間 | 3,126 ms |
コンパイル使用メモリ | 275,944 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2025-07-11 00:28:57 |
合計ジャッジ時間 | 5,992 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { cin.tie(nullptr)->sync_with_stdio(false); string s; cin >> s; int ans = 1; for (int l = 0; l < s.size(); ++l) { for (int r = l + 1; r < s.size(); ++r) { int len = r - l + 1; int cnt = 0; for (int i = 0; i < len / 2; ++i) if (s[l + i] != s[r - i]) ++cnt; ans = max(ans, len - 2 * cnt); } } cout << ans << '\n'; return 0; }