第1题 回文串删除,**有差不多的原题 #include <iostream> #include <string> using namespace std; int main() { cin.tie(0)->sync_with_stdio(false); int ans = 0; int n; cin >> n; string s; cin >> s; for (int i = 0; i < n; i++) { int j = i; while (j < n && s...