-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathC.java
50 lines (45 loc) · 1.62 KB
/
C.java
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
import java.io.PrintStream;
import java.util.*;
/**
* Codejam to I/O for Women 2017 Problem C: Word Search
* Check README.md for explanation.
*/
public class Main {
private String solve(Scanner scanner) {
int d=scanner.nextInt(), n=scanner.nextInt();
char[] allIs=new char[15], allOs=new char[15];
Arrays.fill(allIs, 'I');
Arrays.fill(allOs, 'O');
ArrayList<String> arrayList=new ArrayList<>();
int three=Math.min(13*7, n/3);
int one=n-three*3;
for (int line=0;line<15;line++) {
if (line%4==0) arrayList.add(new String(allIs));
else if (line%4==2) arrayList.add(new String(allOs));
else {
char[] tmp=Arrays.copyOf(allIs, 15);
if (one-->0)
tmp[0]='/';
for (int j=1;j<14;j++) {
if (three-->0)
tmp[j]='/';
}
if (one-->0)
tmp[14]='/';
arrayList.add(new String(tmp));
}
}
return "\n"+String.join("\n", arrayList);
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
Scanner scanner=new Scanner(System.in);
int times=scanner.nextInt();
long start=System.currentTimeMillis();
for (int t=1;t<=times;t++) {
System.out.println(String.format("Case #%d: %s", t, new Main().solve(scanner)));
}
long end=System.currentTimeMillis();
System.err.println(String.format("Time used: %.3fs", (end-start)/1000.0));
}
}