粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #今年的第几天?#
#include <iostream> using namespace std; bool is_run(int year){ if(year%4==0&&year%100!=0||year%400==0) return true; return fal...
2024-01-31
0
158
题解 | #特殊乘法#
#include <iostream> using namespace std; int main() { string x,y; while(cin>>x>>y){ long long res=0; for(int i=0;...
2024-01-31
0
184
题解 | #求最大最小数#
#include <iostream> using namespace std; const int N = 10010; int a[N]; int main() { int n; while (cin >> n) { int min = ...
2024-01-30
0
148
题解 | #球的半径和体积#
#include <cmath> #include <iostream> using namespace std; int main() { int x0,y0,z0,x1,y1,z1; while(cin>>x0>>y0>&g...
2024-01-30
0
173
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; const int N=110; struct stu{ int num; int grade; bool operator&...
2024-01-30
0
159
题解 | #质因数的个数#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ int cnt=0; for(int i=2;i<=n/i;i++)...
2024-01-30
0
166
题解 | #质因数的个数#
#include <iostream> #include <vector> #include <cmath> using namespace std; bool zhishu(int x) { //质数:只能被1和自身整除 for (int i = 2;...
2024-01-30
0
192
题解 | #查找#
#include <iostream> #include <algorithm> using namespace std; const int N=110; int a[N],b[N]; int main() { int n; cin>>n; ...
2024-01-29
0
149
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页