墨思暮
墨思暮
全部文章
分类
归档
标签
去牛客网
登录
/
注册
墨思暮的博客
全部文章
(共2篇)
题解 | 清楚姐姐买竹鼠
#include<bits/stdc++.h> using namespace std; typedef long long ll; int main(){ ll a,b,x; cin>>a>>b>>x; ll mod = x % 3; ll ...
2026-03-14
0
6
题解 | 括号匹配深度
#include<bits/stdc++.h> using namespace std; int main(){ string str; cin>>str; if(str.size() == 0){ cout<<0; return 0; } st...
2026-02-05
0
20