牛客434473393号
牛客434473393号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客434473393号的博客
全部文章
(共23篇)
题解 | #字母统计#
#include <cstdio> #include <iostream> #include <map> #include <string> using namespace std; int main() { string str; ...
2023-03-02
0
293
题解 | #统计字符#
#include <iostream> #include <string> #include <cstdio> using namespace std; int main() { string a, b; while (getline(cin, ...
2023-03-02
0
249
题解 | #简单密码#
#include <iostream> #include <string> #include <cstdio> using namespace std; int main() { string s; while (getline(cin, s))...
2023-03-02
0
192
题解 | #密码翻译#
#include <iostream> #include <string> using namespace std; int main() { string str; while (getline(cin, str)) { for (int ...
2023-03-02
0
273
题解 | #特殊乘法#
#include <cstdio> //讨论区gsnace得思路,太牛了 int main () { int a = 0, b = 0; char c; while (' ' != (c = getchar())) a += c - '0'; ...
2023-03-02
0
222
题解 | #打印极值点下标#
#include <cstdio> #include <iostream> using namespace std; int main() { int k; int a[80]; while (scanf("%d",&k) != EOF) { ...
2023-03-01
0
259
题解 | #找最小数#
#include <algorithm> #include <cstdio> #include <iostream> using namespace std; struct xy{ int x; int y; }; bool Comp(xy a...
2023-03-01
0
273
题解 | #小白鼠排队#
#include <algorithm> #include <iostream> #include <cstdio> using namespace std; struct smallMouse{ int weight; char color[2...
2023-02-28
0
313
题解 | #特殊排序#
#include <cstdio> #include <algorithm> #include <vector> using namespace std; int main() { int N; int b; vector<int&...
2023-02-28
0
260
题解 | #找x#
#include <cstdio> #include <iostream> using namespace std; int main() { int n; int x; while (scanf("%d",&n) != EOF) { ...
2023-02-27
0
273
首页
上一页
1
2
3
下一页
末页