728x90
반응형
단순 사칙연산 문제이다.
a = list(map(int, input().split()))
c = list(map(int, input().split()))
b = [c[0]-a[2], c[1]//a[1], c[2]-a[0]]
print(*b)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 17496번 스타후르츠(python) (0) | 2021.02.03 |
---|---|
백준 알고리즘 17295번 엔드게임 스포일러(python) (0) | 2021.02.03 |
백준 알고리즘 16430번 제리와 톰(python) (0) | 2021.02.03 |
백준 알고리즘 16394번 홍익대학교(python) (0) | 2021.02.03 |
백준 알고리즘 16170번 오늘의 날짜는?(python) (0) | 2021.02.03 |