구현부터 차근차근 연습
import sys
input = sys.stdin.readline
# L은 사람의 수
# P는 파티장 넓이
L, P = map(int, input().split())
attend = list(map(int, input().split()))
real = L * P
for i in attend:
print(i - real, end=' ')
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
백준 3046 - 파이썬 R2 (구현) (0) | 2021.03.18 |
---|---|
백준 3003 - 파이썬 기초 구현문제(킹, 퀸, 룩, 비숍, 나이트, 폰) (0) | 2021.03.18 |
백준 1550- 16진수 python (구현) (0) | 2021.03.05 |
백준 7562 - python bfs로 푼 풀이 (0) | 2021.03.03 |
백준 11725- 트리의 부모 찾기 (0) | 2021.02.24 |