Dev.baelanche

[백준 2921] 도미노 본문

Data Structure & Algorithm/PS - JAVA

[백준 2921] 도미노

baelanche 2019. 4. 19. 21:40
반응형

 

 

도미노 위, 아래에 찍힌 점의 패턴을 살펴보면

(0, 0), (0, 1), (0, 2), (1, 1), (1, 2), (2. 2) 이다.

변수 i, j 로 둘때 j 가 n 까지 순회하고 i 가 n 까지 오르는 이중 반복문인것을 유추할 수 있다.

 

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        
        int sum = 0;
        for(int i=0; i<=n; i++) {
            for(int j=i; j<=n; j++) {
                sum += i + j;
            }
        }
        System.out.println(sum);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 9550] 아이들은 사탕을 좋아해  (0) 2019.04.19
[백준 2965] 캥거루 세마리  (0) 2019.04.19
[백준 10569] 다면체  (0) 2019.04.19
[백준 2914] 저작권  (0) 2019.04.19
[백준 1449] 수리공 항승  (0) 2019.04.19
Comments