题解列表
暴力求解最大公约数,但算式求解最小公倍数
摘要:解题思路:注意事项:最小公倍数使用了最大公约数来计算参考代码:import java.util.Scanner;
public class Main {
public static void……
蓝桥杯2023年第十四届省赛真题-阶乘的和
摘要:解题思路:注意事项:参考代码:n = int(input())
a = list(map(int,input().split()))
a.sort()
from collections impo……
2776: A*B问题
摘要:解题思路: 简单的求A*B的输出 就是加了一个范围 1 <= A,B <= 50000。注意事项:参考代码:#include<stdio.h>int main(){ int A,B; scanf……
题解 2233: 蓝桥杯算法训练-图形显示
摘要:参考代码:参考代码:#include<bits/stdc++.h>#include<windows.h>using namespace std;int a;int main(){ system(……
编写题解 1014: [编程入门]阶乘求和
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a,ans=0; cin>……
2775: 等差数列末项计算
摘要:解题思路: 首先我们要知道等差数列通项公式 an = a1+(n-1)d a1 a2 n 是我们输入的是已知的 公差d用第二项减……
编写题解 2829: 数1的个数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n,sum=0; cin>……