본문 바로가기
python-algorithm

[백준] 3003

by 무적김두칠 2020. 12. 14.

1
2
3
4
5
6
tmp=[1,1,2,2,2,8]
ans=list(map(int,input().split()))
for i in range(6):
    if i!=5:
        print(tmp[i]-ans[i],end=" ")
    else : print(tmp[i]-ans[i])
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 5337  (0) 2020.12.14
[백준] 3046  (0) 2020.12.14
[백준] 2845  (0) 2020.12.14
[백준] 2558  (0) 2020.12.14
[백준] 2557  (0) 2020.12.14

댓글