暴力求解最大公约数,但算式求解最小公倍数 摘要:解题思路:注意事项:最小公倍数使用了最大公约数来计算参考代码:import java.util.Scanner; public class Main { public static void…… 题解列表 2024年02月27日 0 点赞 0 评论 325 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-阶乘的和 摘要:解题思路:注意事项:参考代码:n = int(input()) a = list(map(int,input().split())) a.sort() from collections impo…… 题解列表 2024年02月27日 0 点赞 0 评论 906 浏览 评分:8.0
2776: A*B问题 摘要:解题思路: 简单的求A*B的输出 就是加了一个范围 1 <= A,B <= 50000。注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf…… 题解列表 2024年02月27日 0 点赞 0 评论 374 浏览 评分:0.0
题解 2233: 蓝桥杯算法训练-图形显示 摘要:参考代码:参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;int a;int main(){ system(…… 题解列表 2024年02月27日 0 点赞 0 评论 171 浏览 评分:9.9
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,ans=0; cin>…… 题解列表 2024年02月27日 0 点赞 0 评论 236 浏览 评分:0.0
2775: 等差数列末项计算 摘要:解题思路: 首先我们要知道等差数列通项公式 an = a1+(n-1)d a1 a2 n 是我们输入的是已知的 公差d用第二项减…… 题解列表 2024年02月27日 0 点赞 0 评论 314 浏览 评分:0.0
编写题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin>…… 题解列表 2024年02月27日 0 点赞 0 评论 225 浏览 评分:0.0
C语言判断闰年 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int year,flag=0; scanf("%d",&year); if(year%…… 题解列表 2024年02月27日 0 点赞 0 评论 261 浏览 评分:0.0
An Easy Problem,非暴力贪心python 摘要:解题思路:用bin()转变为2进制,分两种情况111000和1100111000110,前者增加一位1,后者从后数,遇到第一个01,变为10,并将遇到的1变道最后注意事项:参考代码:def f(n):…… 题解列表 2024年02月27日 0 点赞 0 评论 241 浏览 评分:0.0
用C语言解决余数相同问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); int f…… 题解列表 2024年02月27日 0 点赞 0 评论 336 浏览 评分:9.9