czz__zzz
czz__zzz
全部文章
分类
归档
标签
去牛客网
登录
/
注册
czz__zzz的博客
全部文章
(共23篇)
题解 | 排名
#include<iostream> #include<vector> #include<algorithm> using namespace std; struct stu{ string idx; int anum; vector<int>...
2025-03-31
0
8
题解 | 数字阶梯求和
#include<iostream> #include<vector> #include<cmath> using namespace std; int main() { char a; int n; cin >> a >> n; ...
2025-03-31
1
9
题解 | 调整方阵
#include<iostream> #include<vector> using namespace std; int main() { int n; cin >> n; vector<vector<int>> v(n, vect...
2025-03-31
0
8
题解 | 旋转矩阵
#include<iostream> #include<vector> using namespace std; int main() { int n; cin >> n; vector<vector<int>> v(n, vect...
2025-03-31
0
9
题解 | 对称平方数
#include<iostream> using namespace std; int main() { for (int i = 1; i <= 256; i++) { int ii = i * i; int temp = ii; int num = 0; w...
2025-03-30
0
11
题解 | 直角三角形
#include<iostream> #include<cmath> #include<vector> #include<algorithm> using namespace std; int main() { int n; cin >&g...
2025-03-30
0
10
题解 | 弹地小球
#include<iostream> using namespace std; int main() { int n; cin >> n; while (n) { double h; int w; cin >> h >> w; ...
2025-03-30
0
10
题解 | 大整数排序
#include<iostream> #include<vector> #include<algorithm> using namespace std; bool cmp(string s1, string s2) { if (s1.length() != s2...
2025-03-30
0
12
题解 | 统计单词
#include<iostream> #include<vector> using namespace std; int main() { string s; while (cin >> s) { if (s[s.length() - 1] == '.'...
2025-03-29
0
11
题解 | 众数
#include<iostream> #include<vector> #include<map> using namespace std; map<int, int> m; int main() { int temp=0; for (int i...
2025-03-29
0
10
首页
上一页
1
2
3
下一页
末页