https://www.acmicpc.net/problem/16673
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int c = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
int p = Integer.parseInt(st.nextToken());
int sum = 0;
for (int i = 1; i <= c; i++) {
sum += k * i + p * Math.pow(i, 2);
}
System.out.println(sum);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 11006 남욱이의 닭장 (0) | 2022.12.06 |
---|---|
백준 13752 히스토그램 (0) | 2022.12.06 |
백준 10818 최소, 최대 (0) | 2022.03.03 |
백준 10951 A+B-4 (0) | 2022.03.02 |
백준 1924 2007년 (0) | 2022.03.02 |