-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathC.java
44 lines (39 loc) · 1.25 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
import java.io.PrintStream;
import java.util.*;
/**
* Codejam to I/O for Women 2015 Problem C: Power Levels
* Check README.md for explanation.
*/
public class Main {
private String solve(Scanner scanner) {
int n=scanner.nextInt();
if (n<=4) return "...";
int start=1, end=8999;
while (start<end) {
int mid=(start+end)/2;
double v=0;
int x=9000;
while (x>1) {
v+=Math.log10(x);
x-=mid;
}
if ((int)Math.ceil(v)<n)
end=mid;
else start=mid+1;
}
char[] chars=new char[start];
Arrays.fill(chars, '!');
return "IT'S OVER 9000"+new String(chars);
}
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));
}
}