forked from ckcz123/codejam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC.java
27 lines (23 loc) · 875 Bytes
/
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
import java.io.PrintStream;
import java.util.*;
/**
* KickStart 2017 Practice Round Problem C: Sherlock and Parentheses
* Check README.md for explanation.
*/
public class Main {
private String solve(Scanner scanner) {
long l=scanner.nextLong(), r=scanner.nextLong(), m=Math.min(l, r);
return String.valueOf(m*(m+1)/2);
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
long start=System.currentTimeMillis();
Scanner scanner=new Scanner(System.in);
int times=scanner.nextInt();
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));
}
}