반응형
https://school.programmers.co.kr/learn/courses/30/lessons/340206
나머지 연산(%)를 이용한 문제였습니다.
📕 풀이방법
📔 풀이과정
360도를 초과한경우 한 바퀴를 돌아 다시 출발하는 의미로 360의 나머지를 sum_angle에 저장해줍니다.
📕 Code
📔 Python3
angle1 = int(input())
angle2 = int(input())
sum_angle = (angle1 + angle2) % 360
print(sum_angle)
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'Algorithm > Implementation' 카테고리의 다른 글
선택 안됨 (Python3) - 프로그래머스(코딩 기초 트레이닝) : 덧셈식 출력하기 (0) | 2024.10.04 |
---|---|
(Python3) - 프로그래머스(코딩 기초 트레이닝) : 문자열 출력하기 (0) | 2024.10.04 |
(Python3) - LeetCode (easy) 1957. Delete Characters to Make Fancy String (0) | 2024.10.01 |
(Python3) - LeetCode (easy) 1952. Three Divisors (0) | 2024.09.30 |
(Python3) - LeetCode (easy) 1941. Check if All Characters Have Equal Number of Occurrences (0) | 2024.09.27 |