ManoCode
ManoCode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ManoCode的博客
全部文章
(共34篇)
题解 | #n的阶乘#
#include <iostream> using namespace std; long long jiecheng(long long x){ if(x == 1) return 1; else return x * jiecheng(x - 1); } int...
2024-08-21
0
81
题解 | #abc#
#include<iostream> using namespace std; int main(){ int a,b,c; for(a=0;a<=9;a++){ for(b = 0;b<=9;b++){ for(c=...
2024-08-21
0
73
题解 | #求最大最小数#
#include <bits/stdc++.h> #include <cstring> using namespace std; int main(){ int n; while(cin >> n){ int a[n]; ...
2024-08-21
0
91
题解 | #玛雅人的密码#
#include <bits/stdc++.h> using namespace std; struct node{ string str; int count; }; queue<node> q; void swap(char &a, char &b)...
2024-08-21
0
65
题解 | #二叉树遍历#
#include <bits/stdc++.h> using namespace std; typedef struct node{ char data; struct node *lchild,*rchild; }*BitTree; void CreateTree(...
2024-08-21
0
90
题解 | #球的半径和体积#
#include <bits/stdc++.h> #include <cmath> using namespace std; int main(){ int x0,y0,z0,x1,y1,z1; while(cin >>x0 >>y0...
2024-08-21
0
99
题解 | #成绩排序#
#include <bits/stdc++.h> using namespace std; struct stu{ int id; int score; }; int cmp(stu a,stu b){ if(a.score == b.score) retu...
2024-08-21
0
81
题解 | #整数拆分#
#include <bits/stdc++.h> using namespace std; int main() { long long n; int dp[1000001]; dp[1] = 1; dp[2] = 2; while (cin &...
2024-08-21
0
87
题解 | #代理服务器#
#include <bits/stdc++.h> using namespace std; struct daili { string ip; int d;//第一次重复时的最远距离 }; int compare(daili x, daili y) { ret...
2024-08-21
0
75
题解 | #质因数的个数#
#include <bits/stdc++.h> using namespace std; int jisuan(int x){ int count = 0; for(int i = 2 ; i <= x / i ; i++){ if(x % i ...
2024-08-21
0
76
首页
上一页
1
2
3
4
下一页
末页