Skip to content

Commit 9524759

Browse files
committed
fix declaration
1 parent a6772e8 commit 9524759

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Solution.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ public class Solution{
1717
private FastReader in ;
1818
private PrintWriter out ;
1919
private final String PROBLEM_ID = "1039-A";
20-
private final long MOD = 1000000000+7;
20+
private final long MOD = (long)1e9 + 7;
2121
private final int INF = Integer.MAX_VALUE;
2222
private final long INF_L = Long.MAX_VALUE / 2;
2323

2424
public Solution(){}
25+
2526
public Solution(boolean stdIO)throws FileNotFoundException{
26-
// stdIO = false;
2727
if(stdIO){
2828
inputStream = System.in;
2929
outputStream = System.out;
@@ -39,10 +39,10 @@ void run()throws Exception {
3939
int tests = i();
4040
test:
4141
for(int testId = 1; testId <= tests; testId++){
42-
// out.write("Case #"+testId+": ");
42+
// Codejam / Hackercup formatting
43+
// out.write("Case #" + testId + ": ");
4344
long ans = 0;
4445
out.write(ans + "\n");
45-
4646
}
4747
}
4848

0 commit comments

Comments
 (0)