2842: 大整数减法 摘要:参考代码:x = int(input()) y = int(input()) print(x - y)…… 题解列表 2024年03月21日 0 点赞 0 评论 689 浏览 评分:0.0
2841: 大整数加法 摘要:参考代码:x = int(input()) y = int(input()) print(x + y)…… 题解列表 2024年03月21日 0 点赞 0 评论 623 浏览 评分:0.0
2840: 向量点积计算 摘要:参考代码:n = int(input()) arrA = list(map(int, input().split())) arrB = list(map(int, input().split())…… 题解列表 2024年03月21日 0 点赞 0 评论 474 浏览 评分:0.0
2839: 石头剪刀布 摘要:参考代码:def generate(x, y): flag = True while flag: for i in range(len(x)): &nb 题解列表 2024年03月21日 0 点赞 0 评论 265 浏览 评分:0.0
2838: 有趣的跳跃 摘要:参考代码:choose = input().split() if len(choose) == 1: n = int(choose[0]) arr = list(map(int,…… 题解列表 2024年03月21日 0 点赞 1 评论 352 浏览 评分:9.9
1099: 校门外的树 摘要:参考代码:L, M = map(int, input().split()) arr = ['t' for _ in range(L + 1)] for _ in range(M):…… 题解列表 2024年03月20日 0 点赞 0 评论 232 浏览 评分:0.0
2837: 年龄与疾病 摘要:参考代码:n = int(input()) arr = list(map(int, input().split())) s1, s2, s3, s4 = 0, 0, 0, 0 for i in …… 题解列表 2024年03月20日 0 点赞 0 评论 479 浏览 评分:0.0
2836: 数组逆序重放 摘要:参考代码:n = int(input()) print(' '.join(list(map(str, input().split()))[::-1]))…… 题解列表 2024年03月20日 0 点赞 0 评论 319 浏览 评分:0.0
2835: 计算书费 摘要:参考代码:arr = map(int, input().split()) price = [28.9, 32.7, 45.6, 78, 35, 86.2, 27.8, 43, 56, 65] pr…… 题解列表 2024年03月20日 0 点赞 0 评论 306 浏览 评分:0.0