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