蓝桥杯2014年第五届真题-分糖果,新手只会用循环超强解法!!! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main() { int a,b[110]={0},c[…… 题解列表 2024年11月07日 0 点赞 0 评论 120 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果(c++) 摘要:```c++ #include #include #include #include #include using namespace std; const int…… 题解列表 2024年10月09日 0 点赞 0 评论 75 浏览 评分:9.9
编写题解 1431: 蓝桥杯2014年第五届真题-分糖果 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年09月07日 0 点赞 0 评论 56 浏览 评分:9.9
Python 模拟解决[100分] 摘要:解题思路:模拟法注意事项:参考代码: n = int(input()) nums = list(map(int,input().split())) res = 0 def add_(n…… 题解列表 2024年05月10日 0 点赞 0 评论 152 浏览 评分:0.0
Java题解:模拟 摘要:解题思路:输入阶段:首先,从标准输入读取一个整数n,表示数组的长度。然后,读取n个整数作为数组的元素。初始化变量:定义一个整数数组arr来存储输入的数组元素,一个整数变量sum来记录操作次数,一个布尔…… 题解列表 2024年03月29日 0 点赞 0 评论 164 浏览 评分:0.0
丢掉大脑!无脑分糖果! 摘要:解题思路:把糖果数目放到列表里,用最大值最小值判断是否全部相等注意事项:参考代码:n = int(input())list0 = list(map(int,input().split()))sum =…… 题解列表 2024年03月18日 0 点赞 0 评论 85 浏览 评分:0.0
1431: 蓝桥杯2014年第五届真题-分糖果 摘要:解题思路:注意事项:参考代码:def judge(num): first_num = num[0] for i in num[1:]: if i != first_num: …… 题解列表 2024年03月17日 0 点赞 0 评论 70 浏览 评分:0.0
c语言——分糖果 摘要:解题思路:注意事项: 注意最后一个不能加入到循环中去参考代码:#include<stdio.h>int panduan(int arr[],int n);int panduan(int arr[],i…… 题解列表 2024年03月15日 0 点赞 0 评论 180 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,i,f,b=0;//b为补发糖果个数,f为判断每个人是否相等的标志 int stu[10…… 题解列表 2024年03月12日 0 点赞 0 评论 90 浏览 评分:0.0
巨巨巨简单的思路但略微巧妙的设计(按题目要求来) 摘要:解题思路:首先该题主要是通过题目描述,大家可以在草稿上以测试数据查看整个过程糖果的变化,这里因为是绕圈循环变化,所以采用数组。会发现:每次分糖果时该小朋友的糖果数为原来小朋友糖果数的一半加下一个小朋友…… 题解列表 2024年03月05日 0 点赞 1 评论 95 浏览 评分:9.9