蓝桥杯算法提高VIP-数组替换-题解(C语言代码)答案错误18%的可以参考一下 摘要:###### 注意事项 当m1+n1的值小于m时,需要输出啊a[]中全部m个值,不能只输出m1+n1个 ```c #pragma warning(disable:4996) #include…… 题解列表 2020年01月31日 0 点赞 0 评论 228 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码),24行 摘要:```c #include int main(){ int m,n,m1,n1,i; scanf("%d %d",&m,&n); int a[m],b[n]; …… 题解列表 2020年01月10日 0 点赞 0 评论 465 浏览 评分:0.0
怎么查看测试用例-答案错误18%-没有测试失败的用例怎么改代码!!!!(C语言代码) 摘要:谁能告诉我怎么知道评判机用的测试用例?知道的请评论 只显示 点击查看系统可能提供的对比信息 ,这tm哪有那个按钮 #include #include v…… 题解列表 2019年12月21日 0 点赞 1 评论 933 浏览 评分:2.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:```c #include int main(){ int m,n,m1,n1; char a[1000],b[1000]; scanf("%d%d",&m,&n); for(in…… 题解列表 2019年12月06日 0 点赞 1 评论 644 浏览 评分:6.7
蓝桥杯算法提高VIP-数组替换 (C++代码)不想写函数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int v1,v2,t,s,l; int n,m; int a[1000…… 题解列表 2019年03月30日 0 点赞 0 评论 839 浏览 评分:7.3
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:唯独需要注意的地方就是:从数组b中把数插入到数组a后,a数组长度不变的情况。参考代码:#include <stdio.h> int main(){ int a[10001],b[10001]; …… 题解列表 2019年01月31日 1 点赞 0 评论 639 浏览 评分:8.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:按照题目要求来就可以简单实现。注意事项:需要注意的是替换之后的数组a的元素个数。参考代码:#include <stdio.h> #include <malloc.h> int fun(…… 题解列表 2018年10月16日 0 点赞 0 评论 957 浏览 评分:9.0
蓝桥杯算法提高VIP-数组替换-题解(Python代码) 摘要:```python m,n = map(int,input().split()) a = [i for i in input().split()] b = [i for i in input()…… 题解列表 2020年02月06日 0 点赞 1 评论 565 浏览 评分:9.9
蓝桥杯算法提高VIP-数组替换-题解(Java代码) 摘要:```java Scanner scanner=new Scanner(System.in); int m=scanner.nextInt(); int n=scanner.next…… 题解列表 2020年02月02日 0 点赞 0 评论 573 浏览 评分:9.9
1483: 蓝桥杯算法提高VIP-数组替换(python) 摘要: …… 题解列表 2024年10月14日 0 点赞 0 评论 142 浏览 评分:9.9