-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoringDay.java
More file actions
37 lines (36 loc) · 1021 Bytes
/
BoringDay.java
File metadata and controls
37 lines (36 loc) · 1021 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
import java.util.Scanner;
public class BoringDay {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
for (int i = 0; i < t; i++) {
int n=sc.nextInt();
int l=sc.nextInt();
int r=sc.nextInt();
int[] cards=new int[n];
int res=0;
for (int j = 0; j < n; j++) {
cards[j]=sc.nextInt();
}
int sum=0;
int x=0;
while(x<n){
if(cards[x]>=l && cards[x]<=r){
res++;
sum=0;
}
else {
sum += cards[x];
if (sum >= l && sum <= r) {
res++;
sum = 0;
} else if (sum > r) {
sum = 0;
}
}
x++;
}
System.out.println(res);
}
}
}