-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboj2003.java
More file actions
49 lines (39 loc) · 1.12 KB
/
boj2003.java
File metadata and controls
49 lines (39 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class boj2003 {
static int N, M;
static int[] A;
public static void main(String[] args) throws IOException {
input();
pro();
}
static void input() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
A = new int[N + 1];
st = new StringTokenizer(br.readLine());
for (int i = 1; i <= N; i++) {
A[i] = Integer.parseInt(st.nextToken());
}
}
static void pro() {
int R = 0;
int sum = 0;
int ans = 0;
for (int L = 1; L <= N; L++) {
sum -= A[L - 1];
while (R + 1 <= N && sum < M) {
R++;
sum += A[R];
}
if (sum == M) {
ans++;
}
}
System.out.println(ans);
}
}