2836: 数组逆序重放 摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))…… 题解列表 2024年07月31日 0 点赞 0 评论 585 浏览 评分:0.0
2518: 信息学奥赛一本通T1620-质因数分解 摘要:解题思路:注意事项:参考代码:import mathdef is_qurt(n): flag = True for i in range(2,int(math.sqrt(n))+1): …… 题解列表 2024年07月31日 0 点赞 0 评论 439 浏览 评分:9.9
第n小的质数 摘要:解题思路:注意事项:参考代码:import mathn = int(input())flag = Truet = 0for i in range(2,100000): flag = True …… 题解列表 2024年07月31日 0 点赞 0 评论 255 浏览 评分:0.0
你跟我说这是入门题? 摘要:解题思路:还是我文心一言牛逼霍,直接复制粘贴就对了注意事项:参考代码:def check_matrix(matrix): n = len(matrix) row_counts = …… 题解列表 2024年07月31日 0 点赞 0 评论 357 浏览 评分:6.0
独立完成啦兄弟们 摘要:解题思路:除了b1[1:m-1]问文心一言外其他自己写的注意事项:参考代码:m,n=map(int,input().split())b1=[]for i in range(m): l1=list…… 题解列表 2024年07月31日 1 点赞 0 评论 271 浏览 评分:0.0
感谢题解的启发,想了半天了都 摘要:解题思路:注意事项:参考代码:n,i,j=map(int,input().split())for q in range(1,n+1): print(f"({i},{q})",end=" ")pr…… 题解列表 2024年07月31日 0 点赞 0 评论 496 浏览 评分:0.0
题解 2833: 金币 摘要:解题思路:注意事项:参考代码:n = int(input())s = 0m = 0d = 0while True: m +=1 s += m*m d += m if d >= …… 题解列表 2024年07月31日 0 点赞 0 评论 436 浏览 评分:0.0
2831: 画矩形 摘要:解题思路:注意事项:参考代码:l = list(input().split())a = int(l[0])b = int(l[1])if l[3] == '0': print(b…… 题解列表 2024年07月31日 0 点赞 0 评论 170 浏览 评分:0.0
2826: 雇佣兵 摘要:解题思路:注意事项:参考代码:import mathm,n,x=map(int,input().strip().split())while x*n >= m : x -= math.ceil(m…… 题解列表 2024年07月31日 0 点赞 0 评论 308 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:x,n = map(float,input().split())n = int(n)s = 0t = 1for i in range(n+1): s += t …… 题解列表 2024年07月31日 0 点赞 0 评论 394 浏览 评分:0.0