본문 바로가기
백준문제/브론즈 4

백준) 2845번 - python

by kiseno 2024. 3. 20.
728x90
반응형
SMALL
L, P = map(int, input().split())
a = list(map(int, input().split()))
[print(a[i] - L * P, end=" ") for i in range(len(a))]
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 4470번 - python  (0) 2024.03.22
백준) 3046번 - python  (0) 2024.03.21
백준) 2742번 - python  (0) 2024.03.19
백준) 2530번 - python  (0) 2024.03.18
백준) 2480번 - python  (0) 2024.03.17