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])
注册一个 DashOJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 DashOJ 通用账户