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

백준) 3003번 - python

by kiseno 2024. 2. 15.
728x90
반응형
SMALL
formatting, result = [1,1,2,2,2,8],[]
set_chess = list(map(int,input().split()))

for i in range(len(formatting)):
    result.append(formatting[i] - set_chess[i])
    print(result[i], end=" ")

728x90
반응형
LIST

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

백준) 4101번 - python  (0) 2024.02.17
백준) 3052번 - python  (0) 2024.02.16
백준) 2914번 - python  (0) 2024.02.14
백준) 2908번 - python  (1) 2024.02.13
백준) 2884번 - python  (0) 2024.02.12