信息
- ID
- 67
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 4
- 标签
- (无)
- 递交数
- 40
- 已通过
- 21
- 上传者
print(sum(range(int(input())+1)))
666
哥们你真行啊 题都没出完被我做出来了
def calculate_drops(n):
total_drops = (n * (n + 1)) // 2
return total_drops
n = int(input())
total_drops = calculate_drops(n)
print(total_drops)
print(sum(range(int(input())+1)))
qp