5 条题解

  • 0
    @ 2024-5-25 17:16:04
    from itertools import accumulate
    
    n = int(input())
    arr = list(map(int, input().split()))
    k = int(input())
    
    S = [0] + list(accumulate(arr))
    
    for _ in range(k):
        l, r = map(int, input().split())
        print(S[r] - S[l - 1])
    
    

    信息

    ID
    87
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    307
    已通过
    139
    上传者