Codeforces 문제 푸는 길 - 546A Soldier and Banas
1562 단어 Codeforces
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
A soldier wants to buy w bananas in the shop. He has to pay k dollars for the first banana, 2k dollars for the second one and so on (in other words, he has to pay i·k dollars for the i-th banana).
He has n dollars. How many dollars does he have to borrow from his friend soldier to buy w bananas?
Input
The first line contains three positive integers k, n, w (1 ≤ k, w ≤ 1000, 0 ≤ n ≤ 109), the cost of the first banana, initial number of dollars the soldier has and number of bananas he wants.
Output
Output one integer — the amount of dollars that the soldier must borrow from his friend. If he doesn't have to borrow money, output 0.
Examples
input
3 17 4
output
13
제목: 병사가 w개의 바나나스를 사려고 하는데 주머니에 n이 들어있어요. 첫 번째 바나나k, 두 번째 바나나2k에 따라...친구에게 얼마를 빌려달라고 부탁했다.
문제풀이 사고방식: 물문제, 사고방식이 필요 없어요.
다음은 문제풀이 코드(java 구현)
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner = new Scanner(System.in);
int k = scanner.nextInt();
int n = scanner.nextInt();
int w = scanner.nextInt();
int sum = 0;
for(int i = 1;i <= w;i++){
sum += i*k;
}
if(sum > n){
System.out.println(sum-n);
}else{
System.out.println(0);
}
scanner.close();
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces 1287C Garland제목 링크:Codeforces 1287C Garland 사고방식: 우리기dp[i][j][0]와 dp[i][j][1]는 각각 i개가 홀수/짝수이고 앞의 i개 안에 j개의 짝수가 있는 상황에서 i개의 최소 복잡도.첫 번...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.