-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcount.java
More file actions
36 lines (31 loc) · 940 Bytes
/
Copy pathcount.java
File metadata and controls
36 lines (31 loc) · 940 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
import java.util.Scanner;
public class count {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
sc.nextLine();
while (t-- > 0) {
int n = sc.nextInt();
int m = sc.nextInt();
sc.nextLine();
String x = sc.nextLine();
String s = sc.nextLine();
int count = 0;
String original = x;
boolean found = false;
while (x.length() <= s.length() + original.length()) {
if (x.contains(s)) {
found = true;
break;
}
x += original;
count++;
}
if (found) {
System.out.println(count-1);
} else {
System.out.println(-1);
}
}
}
}