牛客557787415号
牛客557787415号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客557787415号的博客
全部文章
(共6篇)
题解 | #完数VS盈数#
#include<cstdio> #include<vector> #include<iostream> using namespace std; int Sum(int i) { int sum = 0; for (int j = 1 ; j...
2024-05-25
0
150
题解 | #skew数#
#include<cstdio> #include<string> #include<iostream> #include<cmath> using namespace std; int main() { string str; ...
2024-05-22
0
156
题解 | #统计字符#
#include<cstdio> #include<iostream> #include<string> using namespace std; int main(){ string findx; while(getline(cin,find...
2024-05-21
0
165
题解 | #找最小数#
#include<cstdio> #include<algorithm> using namespace std; struct Datalist{ int x; int y; }; bool comp(Datalist a,Datalist b){ ...
2024-05-20
1
135
题解 | #整数奇偶排序#
#include<cstdio> #include<algorithm> using namespace std; bool comp (int l, int r) { if (l % 2 != 0 && r % 2 != 0 && ...
2024-05-12
1
196
题解 | #特殊排序#
#include<cstdio> #include<algorithm> using namespace std; int main() { int N; int arr[1000]; while (scanf("%d", &am...
2024-05-12
1
167