2 条题解

  • 0
    @ 2024-4-21 13:29:50
    print(sum(range(int(input())+1)))
    
    
  • 0
    @ 2024-4-12 20:09:20

    哥们你真行啊 题都没出完被我做出来了 image

    def calculate_drops(n):
        total_drops = (n * (n + 1)) // 2
        return total_drops
    
    n = int(input())
    total_drops = calculate_drops(n)
    print(total_drops)
    
    
  • 1

信息

ID
67
时间
1000ms
内存
256MiB
难度
4
标签
(无)
递交数
40
已通过
21
上传者