File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ public class Solution{
17
17
private FastReader in ;
18
18
private PrintWriter out ;
19
19
private final String PROBLEM_ID = "1039-A" ;
20
- private final long MOD = 1000000000 + 7 ;
20
+ private final long MOD = ( long ) 1e9 + 7 ;
21
21
private final int INF = Integer .MAX_VALUE ;
22
22
private final long INF_L = Long .MAX_VALUE / 2 ;
23
23
24
24
public Solution (){}
25
+
25
26
public Solution (boolean stdIO )throws FileNotFoundException {
26
- // stdIO = false;
27
27
if (stdIO ){
28
28
inputStream = System .in ;
29
29
outputStream = System .out ;
@@ -39,10 +39,10 @@ void run()throws Exception {
39
39
int tests = i ();
40
40
test :
41
41
for (int testId = 1 ; testId <= tests ; testId ++){
42
- // out.write("Case #"+testId+": ");
42
+ // Codejam / Hackercup formatting
43
+ // out.write("Case #" + testId + ": ");
43
44
long ans = 0 ;
44
45
out .write (ans + "\n " );
45
-
46
46
}
47
47
}
48
48
You can’t perform that action at this time.
0 commit comments