-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution_2003.java
More file actions
57 lines (57 loc) · 891 Bytes
/
Solution_2003.java
File metadata and controls
57 lines (57 loc) · 891 Bytes
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
50
51
52
53
54
55
56
57
//package baekjoon_2003;
//
//import java.util.*;
//import java.io.*;
//
//public class Solution_2003 {
//
// public static int count=0;
//
// public static int m;
//
//
//
// public static void main(String[] args) throws IOException {
//
// BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
//
// StringTokenizer st=new StringTokenizer(br.readLine());
//
// int n;
//
// n=Integer.parseInt(st.nextToken());
//
// m=Integer.parseInt(st.nextToken());
//
// st=new StringTokenizer(br.readLine());
//
//
// int[] arr=new int[n];
//
//
// for(int i=0;i<n;i++) {
//
// arr[i]=Integer.parseInt(st.nextToken());
//
// }
//
// for(int i=0;i<n;i++) {
// int sum=0;
// for(int j=i;j<n;j++) {
// sum+=arr[j];
// if(sum==m)
// count++;
// else if(sum>m)
// break;
// }
// }
//
//
//
// System.out.println(count);
//
// }
//
//
//
//}