花落的新手写法 (C语言代码) 摘要:解题思路:注意事项:注意他们拿手中的一半的时候是没有顺序的,而且第一个要把糖果给最后一个。参考代码:#include<stdio.h>int jiancha(int *p,int n){ int i,…… 题解列表 2017年12月15日 0 点赞 0 评论 791 浏览 评分:0.0
蓝桥杯历届试题-分糖果 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #define N 100 using namespace std; int flag[N]={}; int cnt=0; …… 题解列表 2018年02月15日 0 点赞 0 评论 949 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> const int N = 100; using namespace std; int main() { int n…… 题解列表 2019年03月16日 0 点赞 0 评论 255 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(Java代码) 摘要:解题思路:4 10 20 30 4010 20 30 40将每个孩子手里的糖果去掉一半5 10 15 20 分完之后每个孩子手里的糖果等于自己现在手上的加…… 题解列表 2021年01月16日 0 点赞 0 评论 287 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:head = int(input())n = map(int,input().strip().split())n = list(n)num = 0jurge = len(…… 题解列表 2023年05月23日 0 点赞 0 评论 86 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,c=0,i,f; int a[100],b[100];//用a[i]来表示糖果数 scanf("%d…… 题解列表 2018年08月16日 0 点赞 0 评论 458 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码) 摘要:## 解题思路: 首先输入的是糖果数n,利用数组a存放n个糖果,且都为偶数。将数组a中的糖果对半分,且存储到数组b中,此时数组a和b相加即为原来数组a中的糖果数,题目要求,给右边的人一半糖果即a[0…… 题解列表 2020年07月11日 0 点赞 0 评论 388 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n,a[100],i,other=0,j,num; scanf("%d",&n); …… 题解列表 2017年12月19日 0 点赞 0 评论 553 浏览 评分:0.0
蓝桥杯(分糖果) 摘要:解题思路:注意事项:参考代码:num=int(input())sw=list(map(int,input().strip().split()))f=0while(True): b=len(set…… 题解列表 2021年03月25日 0 点赞 0 评论 127 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int N; cin>>N; int num[N],surplus[N],giv…… 题解列表 2019年09月25日 0 点赞 0 评论 407 浏览 评分:0.0