分糖果 —— 全网最简单的思路!
摘要:解题思路:最简单的思路注意事项:列表的使用参考代码:n=int(input())count=0a=list(map(in……
编写题解 1431: 蓝桥杯2014年第五届真题-分糖果
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num[100]={0}, bu = 0, i, f = 0; scanf("……
纯循环(一下标题太短,一下标题敏感,神经)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<string>using namespace std;int n; &……
蓝桥杯2014年第五届真题-分糖果,新手只会用循环超强解法!!!
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main()
{
int a,b[110]={0},c[……
蓝桥杯2014年第五届真题-分糖果(c++)
摘要:```c++
#include
#include
#include
#include
#include
using namespace std;
const int……
编写题解 1431: 蓝桥杯2014年第五届真题-分糖果
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {……
Python 模拟解决[100分]
摘要:解题思路:模拟法注意事项:参考代码:
n = int(input())
nums = list(map(int,input().split()))
res = 0
def add_(n……
丢掉大脑!无脑分糖果!
摘要:解题思路:把糖果数目放到列表里,用最大值最小值判断是否全部相等注意事项:参考代码:n = int(input())list0 = list(map(int,input().split()))sum =……