题解列表

筛选

最小公倍数问题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%……

蓝桥杯算法提高VIP-P0102

摘要:解题思路:无注意事项:无参考代码:s = input()print('Hex: '+'0x'+s)print('Decimal:',end=' ……

[编程入门]电报加密(简单入门)

摘要:解题思路:注意事项:参考代码:注意事项:字符串需要引号才能通过ord转换为数字形式a=str(input()) res=[] for i in a:     i=ord(i)#122     ……

使用动态规划进行计算k好数

摘要:解题思路:注意事项:参考代码:###使用动态规划进行计算k好数 mod_num=1000000007 K,L=map(int ,input().split()) dp=[[0]*(K+1) fo……