-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathAmountTwo.java
36 lines (31 loc) · 999 Bytes
/
AmountTwo.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
package amount_two;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.*;
public class AmountTwo {
public static void main(String[] args) throws IOException {
PrintWriter out = new PrintWriter(System.out);
Scanner sc = new Scanner(new FileReader("input.txt"));
int number = sc.nextInt();
if (number < 4) {
out.println(0);
} else {
int count = 0;
for (int a = 1; a < number/2; a++) {
for (int b = a; b < number/2; b++) {
if (a + b < number - 1) {
for (int c = b; c < number/2; c++) {
int d = number - (a + b + c);
if (d >= c) {
count++;
}
}
}
}
}
out.println(count);
}
out.flush();
}
}