1. 몫과 나머지
만든이 : 슬픈 찜닭
2. 문제정보
level.goorm.io/exam/43222/%EB%AA%AB%EA%B3%BC-%EB%82%98%EB%A8%B8%EC%A7%80/quiz/1
3. 풀이
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
value, dv = map(int, input().split())
share = 0
while (value >= dv): '''뺴지면 무한 반복 '''
value -= dv
share += 1
print(share, value)
4. 결과
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
value, dv = map(int, input().split())
share = 0
while (value >= dv):
value -= dv
share += 1
print(share, value)
'Goorm ide 코딩 문제 > Level 1' 카테고리의 다른 글
[Goorm LEVEL 1] 윤년 (Leap Year) (0) | 2021.04.13 |
---|---|
[Goorm LEVEL 1] ASCII 코드 (0) | 2021.04.13 |
[Goorm LEVEL 1] 16진수 (0) | 2021.04.13 |
[Goorm LEVEL 1] 거스름돈 (0) | 2021.04.13 |
[Goorm LEVEL 1] Bubble Sort (0) | 2021.04.12 |