牛客lcx821
牛客lcx821
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客lcx821的博客
全部文章
(共4篇)
题解 | 好好好数组
#include <iostream> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin>>t; w...
2026-01-25
0
9
题解 | 统计个数
#include <iostream> #include <vector> #include <set> using namespace std; int gcd(int a, int b) { while (b != 0) { int ...
2026-01-06
0
16
题解 | 变幻莫测
#include <iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x+y == 0&&x != y) cout<<3; ...
2025-12-28
0
29
题解 | 括号的匹配
#include <iostream> #include <stack> #include <map> using namespace std; int main() { int t; cin>>t; cin.ignore()...
2025-12-22
0
32