[Python] BOJ 2845번. 파티가 끝나고 난 뒤 작성일 2020-05-22 | In Algorithm | 2845번. 파티가 끝나고 난 뒤 문제 링크 https://www.acmicpc.net/problem/2845 풀이 코드 1234567891011# 2845번. 파티가 끝나고 난 뒤 import sys input = sys.stdin.readline l, p = map(int, input().split()) a = list(map(int, input().split())) san = l*p for i in range(5): print(a[i]-san, end=' ') 비고