爱喝零度可乐
爱喝零度可乐
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱喝零度可乐的博客
全部文章
(共85篇)
题解 | #Zero-complexity
#include<cstdio> #include<stack> using namespace std; int main(){ stack<long long> myStack; int n ; long long num; ...
2023-03-07
0
304
题解 | #完数VS盈数#
#include<cstdio> #include<vector> int sumYingzi(int n) { int sum = 0; for (int j = 1 ; j < n ; ++j) { if (n % j == 0) ...
2023-03-06
0
234
题解 | #skew数#
#include<cstdio> #include<string> #include<math.h> using namespace std; int main(){ char arr[100]; while( scanf("%s",arr) !...
2023-03-05
0
200
题解 | #字母统计#
#include<cstdio> #include<string> using namespace std ; int main(){ int ASCA[26]={'A','B','C','D','E','F','G','H','I','J','K','L','M...
2023-03-05
0
222
题解 | #统计字符#
#include<cstdio> #include<string> #include<cstring> using namespace std ; int main() { char arr[10]; fgets(arr, 10, stdin); ...
2023-03-05
0
262
题解 | #密码翻译#
#include<cstdio> #include<string> using namespace std ; int main() { char arr[100]; fgets(arr, 100, stdin); string str = arr...
2023-03-05
0
262
题解 | #特殊乘法#
#include<cstdio> #include<string> using namespace std ; int main (){ char arr[100]; char buf[100]; scanf ("%s %s",arr,buf);...
2023-03-05
0
186
题解 | #打印极值点下标#
#include<cstdio> int main(){ int n; int arr[100]; while(scanf("%d",&n) != EOF){ for(int i = 0 ; i < n ; ++ i){ ...
2023-03-03
0
279
题解 | #找最小数#
#include<cstdio> #include<algorithm> using namespace std; struct zhengshu { int x; int y; }; bool comp(zhengshu lhs, zhengshu rhs...
2023-03-03
0
244
题解 | #查找#
#include<cstdio> #include<map> #include<algorithm> using namespace std; int main() { map< int, int >findindx; int m, ...
2023-03-03
0
235
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页