728x90
문제
코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
private static BufferedReader br;
private static int N;
private static int answer = 0;
//입력
public static void input() throws Exception{
br = new BufferedReader(new InputStreamReader(System.in));
N= Integer.parseInt(br.readLine());
}
//과정
public static void process() {
for(int i = 1 ; i < N; i++){
for(int j = 1 ; j < N ; j++){
for(int k = 1 ; k < N ; k++){
if(N-(i+j+k) !=0 ) continue;
if(i%2==1) continue;
if(j < k+2) continue;
answer++;
}
}
}
System.out.println(answer);
}
public static void main(String[] args) throws Exception{
input();
process();
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[Java] 백준 2851번 : 슈퍼 마리오 (0) | 2024.04.13 |
---|---|
[Java] 백준 2875번 : 대회 or 인턴 (0) | 2024.04.13 |
[Java] 백준 2309번 : 일곱 난쟁이 (0) | 2024.04.11 |
[Java] 백준 16283번 : Farm (0) | 2024.04.11 |
[Java] 백준 17945번 : 통학의 신 (0) | 2024.04.11 |