题解列表

筛选

2811: 救援(Python)

摘要:解题思路:注意事项:参考代码:from decimal import * n = int(input()) t0 = 0 while True: try: x,y,num=map(in……

杨辉三角解题

摘要:解题思路:注意事项:参考代码:while True:    try:        def tri(row):            List = [[1 for i in range(j)] for……

蓝桥杯基础练习VIP-FJ的字符串

摘要:解题思路:字符编码注意事项:字符的编码转换参考代码:s='A'n=int(input())for i in range(n):    b=s    a=b    s=b+chr(65+……

2821: 开关灯

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())l=[1]*nfor i in range(1,m+1):    for j in range(1,n+1):  ……

叉积求面积

摘要:解题思路:注意事项:参考代码:def Cross(x1,y1,x2,y2):    return x1*y2-y1*x2x1,y1,x2,y2,x3,y3=map(float,input().spli……