钉钉铛铛
钉钉铛铛
全部文章
分类
归档
标签
去牛客网
登录
/
注册
钉钉铛铛的博客
TA的专栏
1篇文章
0人订阅
stm32
0篇文章
0人学习
C/C++
1篇文章
553人学习
全部文章
(共22篇)
题解 | 小苯的水果园
#include <iostream> #include <unordered_map> #include <vector> #include <algorithm> using namespace std; int main() { ios...
2025-12-12
0
10
题解 | 牛牛的括号式
#include <iostream> #include <string> #include <vector> using namespace std; const int MOD = 10007; int main() { string s; ...
2025-11-30
0
9
题解 | 锁
#include <iostream> #include <vector> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); i...
2025-11-30
0
9
题解 | 字符串解密
#include <iostream> #include <vector> #include <string> using namespace std; // 将二进制字符串转换为十进制数 long long binaryToDecimal(const stri...
2025-11-29
0
10
题解 | 字符串解密
#include <iostream> #include <vector> #include <string> using namespace std; int main() { string s; cin >> s; vec...
2025-11-29
0
12
题解 | 蛇鸟
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n,l;cin>>n>>l; ...
2025-11-29
0
10
题解 | 小红的大小写字母
#include <iostream> using namespace std; int main() { int n, k; cin >> n >> k; string s; cin >> s; //首先把s...
2025-11-29
0
7
题解 | 回文日期
#include <iostream> #include <string> #include <algorithm> using namespace std; const int month_day[13] = {0,31,28,31,30,31,30,31,3...
2025-11-22
0
11
题解 | 走迷宫
#include <iostream> #include <vector> #include <queue> #include <cstring> using namespace std; using PII=pair<int,int>; ...
2025-11-19
0
23
题解 | 被打乱的异或和
#include <iostream> #include <vector> using namespace std; int main() { int t;cin>>t; while(t--) { int n;cin>...
2025-11-17
0
17
首页
上一页
1
2
3
下一页
末页