题解列表

筛选

蓝桥杯历届试题-回文数字

摘要:解题思路:注意事项:参考代码:package lanqiaobei;import java.util.Scanner;public class Main1433 { public static voi……

ascii码的简单应用

摘要:# MarkDown编辑器基本使用说明 ```c #include using namespace std; const int N=1010; typedef long long ll……

动态规划,标准解

摘要:解题思路:这一题有两个难点:1为能否算出所有的能凑成的数(以10000为最大界限,因为Ai最大为100,N也才为100,10000足够代表所有的数了),2为如何判断凑出来的数是否为无限个。第一个难点:……

错误票据部

摘要:解题思路:注意事项:参考代码:n=int(input()) l=[] for i in range(n):     s=input().split()     for i in s:    ……

最小公倍数问题6行解决

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) n=a*b*c for i in range(1,n+1):     if i%a==0 and i%……