728x90
반응형
간단한 사칙연산 문제이다.
L, P = map(int, input().split())
p = L*P
for n in map(int, input().split()):
print(n-p, end=' ')
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5337번 웰컴(python) (0) | 2021.02.01 |
---|---|
백준 알고리즘 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰(python) (0) | 2021.02.01 |
백준 알고리즘 2475번 검증수(python) (0) | 2021.02.01 |
백준 알고리즘 1550번 16진수(python) (0) | 2021.02.01 |
백준 알고리즘 1271번 엄청난 부자2(python) (0) | 2021.02.01 |