Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Kaggle
- gs25
- Git
- PYTHON
- 백준
- 데이콘
- leetcode
- 우분투
- AI 경진대회
- 코로나19
- github
- 편스토랑
- dacon
- Docker
- 편스토랑 우승상품
- Real or Not? NLP with Disaster Tweets
- hackerrank
- 파이썬
- ChatGPT
- 맥북
- ubuntu
- 프로그래머스 파이썬
- 캐치카페
- programmers
- SW Expert Academy
- 프로그래머스
- 자연어처리
- 더현대서울 맛집
- 금융문자분석경진대회
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 13420번 : 사칙연산 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 사칙연산 입니다.
Solution
def arithmetic_operation(mathematical_expression):
is_correct = "wrong answer"
num1, operator, num2, _, result = mathematical_expression.split()
num1, num2, result = int(num1), int(num2), int(result)
if (operator == "*") and (num1 * num2 == result):
is_correct = "correct"
elif (operator == "/") and (num1 / num2 == result):
is_correct = "correct"
elif (operator == "+") and (num1 + num2 == result):
is_correct = "correct"
elif (operator == "-") and (num1 - num2 == result):
is_correct = "correct"
return is_correct
if __name__ == "__main__":
for _ in range(int(input())):
mathematical_expression = input()
print(arithmetic_operation(mathematical_expression))
Solution 풀이
먼저 입력 받은 수식을 공백으로 나눈 뒤
첫번째 세번째 숫자를 두번째 operator를 바탕으로 덧셈, 뺄셈, 곱셈, 나눗셈 한 값이
다섯번째 값과 같다면 "correct"를 그렇지 않다면 "wrong answer"를 출력하도록 합니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10769번 : 행복한지 슬픈지 (Python) (0) | 2021.07.10 |
---|---|
[BaekJoon] 2870번 : 수학숙제 (Python) (0) | 2021.07.09 |
[BaekJoon] 8595번 : 히든 넘버 (Python) (0) | 2021.07.07 |
[BaekJoon] 18406번 : 럭키 스트레이트 (Python) (0) | 2021.07.06 |
[BaekJoon] 14726번 : 신용카드 판별 (Python) (0) | 2021.07.05 |
Comments