帅的一天被人砍三回
帅的一天被人砍三回
全部文章
分类
归档
标签
去牛客网
登录
/
注册
帅的一天被人砍三回的博客
全部文章
(共37篇)
题解 | xxx定律
#include <stdio.h> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int step=0; while(n...
2025-03-16
0
52
题解 | Old Bill
#include <stdio.h> #include <vector> using namespace std; struct Chi{ int price; int high; int low; Chi(int _price,int _hi...
2025-03-16
0
36
题解 | 与7无关的数
#include <stdio.h> #include <vector> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int tot...
2025-03-16
0
52
题解 | 对称平方数1
#include <stdio.h> using namespace std; int Reverse(int n){ int reverse=0; while(n!=0){ reverse=n%10+reverse*10; n=n/10;...
2025-03-16
0
50
题解 | 反序数
#include <stdio.h> using namespace std; int GetsReverse(int n){ int reverse=0; int j=0; while(n!=0){ reverse=n%10+10*reverse; ...
2025-03-16
0
52
题解 | abc
#include <stdio.h> using namespace std; int main(){ for(int a=0;a<=9;++a){ for(int b=0;b<=9;++b){ for(int c=0;c<...
2025-03-16
0
37
题解 | 质因数的个数
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <vector> #include <cmath> using namespace std; int main() { int num[...
2025-03-15
0
47
题解 | 最大连续子序列
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <vector> using namespace std; int dp[10001]; int s[...
2025-03-14
0
47
题解 | 吃糖果
#include <stdio.h> #include <string.h> using namespace std; int main(){ int dp[20]; int N; dp[1]=1; dp[2]=2; for(int i...
2025-03-14
0
50
题解 | Jungle Roads
#include <cstdio> #include <vector> #include <algorithm> #include <string> using namespace std; char father[30]; struct road ...
2025-03-13
0
49
首页
上一页
1
2
3
4
下一页
末页