문제출처: https://www.acmicpc.net/problem/1834




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class Main {
    
    public static void main(String[] args) throws NumberFormatException, IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        long N = Long.parseLong(reader.readLine());
        long result = 0;
        int count = 1;
        
        while(count < N){
            result += N * count + count;
            count++;
        }
        
        System.out.println(result);
    }
}
cs


'Algorithm' 카테고리의 다른 글

백준 1339번: 단어 수학  (0) 2018.09.23
백준 1940번: 주몽  (0) 2018.09.23
백준 1780번: 종이의 개수  (0) 2018.08.08
백준 1992번: 쿼드트리  (0) 2018.08.08
Divide and Conquer (분할정복법)  (0) 2018.08.07

+ Recent posts