a = int(input())
sz = []
for i in range(a):
if i == 0:
sz.append(int(input()))
else:
sz.append(int(input())+sz[i-1])
while True:
try:
x, y = map(int, input().split(" "))
if x == 0:
print(sz[y])
else:
print(sz[y]-sz[x-1])
except:
break
前缀和
注意x=0特殊情况