在吵架的小辣鸡很糊涂
在吵架的小辣鸡很糊涂
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在吵架的小辣鸡很糊涂的博客
全部文章
(共74篇)
题解 | 记负均正
#include <iostream> #include <vector> using namespace std; int main() { int a; while (cin >> a) { int num; ...
2025-08-15
0
15
题解 | 表示数字
#include <iostream> using namespace std; int main() { string s; while (cin >> s) { string ret = ""; fo...
2025-08-15
0
18
题解 | 记票统计
#include <iostream> #include <vector> #include <map> using namespace std; int main() { int n, m; string name; while (c...
2025-08-14
0
17
题解 | 在字符串中找出连续最长的数字串
#include <iostream> #include <vector> using namespace std; int main() { string str; vector<string> arr; while (cin >...
2025-08-14
0
15
题解 | 合法IP
#include <iostream> #include <vector> #include <cstring> using namespace std; int main() { string s; while (getline(cin, s...
2025-08-12
0
18
题解 | 密码强度等级
#include <iostream> using namespace std; int main() { string s; string str = "!\"#$%&\'()*+,-./:;<=>?@[\]^_`{|}~&q...
2025-08-12
0
15
题解 | 求最大连续bit数
#include <iostream> using namespace std; int main() { int a; while (cin >> a) { int count = 0; int maxLength = 0...
2025-08-11
0
16
题解 | 最长回文子串
#include <iostream> using namespace std; // 判断是否是回文子串 static bool isPalindromicSub(string s) { int length = s.size(); for (int i = 0; ...
2025-08-11
0
18
题解 | 统计大写字母个数
#include <iostream> using namespace std; int main() { string s; while (getline(cin, s)) { // 注意 while 处理多个 case int count =0; ...
2025-08-11
0
19
题解 | 字符串字符匹配
#include <iostream> #include <map> using namespace std; int main() { string s, t; cin >> s >> t; map<char, i...
2025-08-08
0
15
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页