子豪不自豪
子豪不自豪
全部文章
分类
postman接口测试工具(2)
python(1)
逻辑思维(1)
题解(1)
归档
标签
去牛客网
登录
/
注册
子豪不自豪的博客
后学末进者,当砥砺前行
全部文章
(共14篇)
题解 | #小红的最大价值#
小红的最大价值 #include <math.h> int main(){ int n, k; scanf("%d %d", &n, &k); int arr[n]; for (int i=0;i<n;i++){ s...
C
2024-07-08
0
201
题解 | #拦截导弹#
#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { int arr[a]; for (int i=0;i<a;i...
2024-01-08
0
197
题解 | #Digital Roots# #C
#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { int sum=0; while (1) { ...
2024-01-07
0
237
题解 | #Primary Arithmetic#
#include <stdio.h> #include <string.h> //非常简单的代码,应该一目了然,就不解释了 int main() { int a,b; while (scanf("%d %d", &a, &...
2024-01-07
2
277
题解 | #数制转换#
#include <stdio.h> #include <string.h> #include <math.h> //下述数字其实就是对应位置的ascii码 int main() { char arr[64]; long a, b; wh...
2024-01-06
0
263
题解 | #大整数的因子#
#include <stdio.h> #include <string.h> //只需要考虑余数的大数除法 int main() { char arr[30]; while (scanf("%s", arr) != EOF) { ...
2024-01-02
2
266
题解 | #最小花费#
#include <math.h> #include <stdio.h> //dp[i] = min{dp[i-1]+(i到i-1之间的合适的价位)...dp[i-n]+(i到i-n之间合适的价位)} //dis[i] - dis[i-n]<l3 //把握好一旦距离超...
2023-12-28
1
235
题解 | #质因数的个数# #C
#include <math.h> #include <stdio.h> int judge_zhishu(int num){ for (int i=2;i*i<=num;i++){ if (num % i == 0){ ...
2023-12-26
1
274
题解 | #约数的个数#
#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf(...
2023-12-25
1
214
题解 | #成绩排序#
#include <stdio.h> #include <stdlib.h> typedef struct node{ char name[16]; int score; }node; void swap(node *a, node *b){ no...
2023-12-25
0
215
首页
上一页
1
2
下一页
末页