import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader sc=new BufferedReader(new InputStreamReader(System.in)); PrintWriter out=new PrintWriter(new OutputStreamWriter(System.out)); String[]nums=sc.readLine().split(" "); int n=Integer.parseInt(nums[0]); int m=Integer.parseInt(nums[1]); long[]a=new long[n+1]; String[]s=sc.readLine().split(" "); for (int i = 0; i <s.length; i++) { a[i+1]=a[i]+Integer.parseInt(s[i]); } for (int i = 0; i < m; i++) { nums=sc.readLine().split(" "); int first=Integer.parseInt(nums[0]); int end=Integer.parseInt(nums[1]); out.println(a[end]-a[first-1]); out.flush(); } } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:609 |
数组输出 (C语言代码)浏览:811 |
C语言训练-斐波纳契数列 (C语言代码)浏览:1270 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
小明A+B (C语言代码)浏览:1316 |
字符串比较 (C语言代码)答案错误????浏览:641 |
输出正反三角形 (C语言代码)浏览:859 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:368 |
三角形 (C++代码)记忆化搜索浏览:1317 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:561 |