안녕하세요. BeyondTheClouds 입니다.
이번에 풀어볼 문제는 2845번 파티가 끝나고 난 뒤 입니다.

제가 작성한 코드는 아래와 같습니다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int L = sc.nextInt();
int P = sc.nextInt();
int LP = L * P;
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
int e = sc.nextInt();
System.out.print((a - LP) + " ");
System.out.print((b - LP) + " ");
System.out.print((c - LP) + " ");
System.out.print((d - LP) + " ");
System.out.print(e - LP);
}
}
마지막으로 위 문제의 링크 남겨두도록 하겠습니다!
https://www.acmicpc.net/problem/2845
★ 제가 푼 방법이 항상 정답은 아닙니다. 더 좋은 방법이 있다면 댓글로 알려주세요! ★