-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnapStreaks.java
More file actions
31 lines (28 loc) · 865 Bytes
/
SnapStreaks.java
File metadata and controls
31 lines (28 loc) · 865 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
import java.util.Scanner;
public class SnapStreaks {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int arr1[] = new int[n];
int arr2[] = new int[n];
for(int i = 0; i < arr1.length; i++){
arr1[i] = sc.nextInt();
}
for(int i = 0; i < arr2.length; i++){
arr2[i] = sc.nextInt();
}
int currStr = 0;
int maxStr = Integer.MIN_VALUE;
for(int i = 0; i < n; i++){
if(arr1[i] > 0 && arr2[i] > 0){
currStr += 1;
}
else if(arr1[i] == 0 || arr2[i] == 0){
maxStr = Math.max(currStr,maxStr);
currStr = 0;
}
}
maxStr = Math.max(currStr,maxStr);
System.out.println(maxStr);
}
}