Cometin'

BOJ-3003 - Python

2020-08-16 at Algorithm category

정해진 수들과 비교하여 차이값을 출력하는 문제 input.split한 리스트와 range(6)을 기준으로 수행되는 for문을 이용하여 풀었다.

cl = [1, 1, 2, 2, 2, 8]
nl = list(map(int, input().split()))
for i in range(6):
    print(cl[i] - nl[i], end=' ')

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.