牛客271438号
牛客271438号
全部文章
分类
题解(105)
归档
标签
去牛客网
登录
/
注册
牛客271438号的博客
全部文章
(共73篇)
题解 | #统计大写字母个数#
#include<iostream> using namespace std; int main() { string str; while(getline(cin,str)) { int i=0; int count=0; ...
C++
2021-10-21
0
299
题解 | #最长回文子串#
#include<iostream> using namespace std; int main() { string str; while(cin>>str) { int i=0; int len=str.size()...
C++
2021-10-21
0
353
题解 | #密码强度等级#
#include<iostream> using namespace std; int main() { string s; while(cin>>s) { int len=s.length(); int minch=0...
C++
2021-10-20
0
335
题解 | #走方格的方案数#
#include<iostream> #include<vector> using namespace std; int main() { int row,col; while(cin>>row>>col) { ...
C++
2021-10-20
0
308
题解 | #数组分组#
#include<iostream> #include<cmath> #include<vector> using namespace std; int des5_3=0; vector<int>vec; bool dfs(int i,int des)...
C++
2021-10-20
0
421
题解 | #数组分组#
#include<iostream> #include<cmath> #include<vector> using namespace std; int des5_3=0; vector<int>vec; bool dfs(int i,int des)...
C++
2021-10-20
0
308
题解 | #记票统计#
#include<iostream> #include<map> #include<vector> using namespace std; int main() { int d; while(cin>>d) { ...
C++
2021-10-20
0
342
题解 | #表示数字#
#include<iostream> using namespace std; int main() { string str; while(cin>>str) { int i=0; string res; ...
C++
2021-10-19
0
355
题解 | #记负均正#
#include<iostream> using namespace std; int main() { int d; while(cin>>d) { int sum=0; int fcout=0; in...
C++
2021-10-19
0
334
题解 | #自守数#
#include<iostream> using namespace std; string int_tostr(int d) { string res; int s=d/10; int y=d%10; char ch=y+'0'; res.pus...
C++
2021-10-19
0
292
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页