摘要: A. Quasi-palindrome 题意:给你一个数,在前面加上一些前导零使得这个数是回文。 模拟。 点击查看代码 void solve() { std::string s; std::cin >> s; auto check = [&](std::string s) -> bool { int 阅读全文
posted @ 2025-03-10 16:50 maburb 阅读(24) 评论(0) 推荐(0)