勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #质因数的个数#
#include <bits/stdc++.h> using namespace std; // 函数用于计算 n 的质因数个数(包括重复的质因数) int count(int n) { int ret = 0; // 从 2 开始尝试每个可能的因数,直到 sqrt(n...
2024-06-21
0
124
题解 | #反序输出#
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ for(int i = s.size() - 1;i >= 0;i --)cout &l...
2024-06-21
0
127
题解 | #约数的个数#
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int s[N]; int Counter(int x){ int count = 0; int i = 1; for(i = 1;i...
2024-06-19
0
126
题解 | #堆栈的使用#
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; char op; while(cin >> n){ stack<int> s; while(n --){ ...
2024-06-17
0
139
题解 | #Zero-complexity
#include <bits/stdc++.h> using namespace std; stack<long long> s; int main(){ int n; while(cin >> n){ for(int i = 0;i < ...
2024-06-04
0
121
题解 | #完数VS盈数#
#include <bits/stdc++.h> using namespace std; int sum(int x){ int sum = 0; for(int i = 1; i < x;i ++){ if(x % i == 0){ sum += i; }...
2024-06-04
0
146
题解 | #浮点数加法#
// #include<bits/stdc++.h> //看了下评论区,感觉大家写的真的很麻烦 #include <iostream> #include <algorithm> #include <string> using namespace std...
2024-06-01
0
153
题解 | #首字母大写#
#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin,str)){ if(str[0] >= 'a' && str[0] <...
2024-06-01
0
117
题解 | #skew数#
#include <bits/stdc++.h> using namespace std; int main(){ string str; while(getline(cin,str)){ int ans = 0; for(int i = str.size() - 1...
2024-06-01
0
124
题解 | #字母统计#
#include <bits/stdc++.h> using namespace std; int num[128]; int main(){ string str; while(getline(cin,str)){ for(int i = 0;i < 26;i ...
2024-06-01
0
123
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页