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 |
Tags
- AI 경진대회
- 맥북
- PYTHON
- hackerrank
- ubuntu
- 코로나19
- programmers
- gs25
- 더현대서울 맛집
- 편스토랑 우승상품
- github
- ChatGPT
- 자연어처리
- Real or Not? NLP with Disaster Tweets
- dacon
- Kaggle
- 편스토랑
- 파이썬
- 프로그래머스 파이썬
- Docker
- Baekjoon
- 프로그래머스
- 백준
- 데이콘
- Git
- SW Expert Academy
- 우분투
- 캐치카페
- 금융문자분석경진대회
- leetcode
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 5613번 : 계산기 프로그램 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 계산기 프로그램 입니다.
👨🏻💻 문제 풀이
더하기 빼기 곱하기 나누기를 사칙연산을 지켜가면서 풀어야하는 줄 알고 python의 eval을 활용하여 풀었다가
입출력 예시 넣어 풀어보니 그냥 나온 연산자 순서대로 풀면 되는 문제였습니다.
전체 코드는 아래를 참고해주세요.
👨🏻💻 코드 ( Solution )
def calculate_program(num_and_operator):
for i in range(len(num_and_operator) - 2):
if num_and_operator[i+1] == "-":
num_and_operator[i+2] = str(int(num_and_operator[i]) - int(num_and_operator[i+2]))
elif num_and_operator[i+1] == "+":
num_and_operator[i+2] = str(int(num_and_operator[i]) + int(num_and_operator[i+2]))
elif num_and_operator[i+1] == "*":
num_and_operator[i+2] = str(int(num_and_operator[i]) * int(num_and_operator[i+2]))
elif num_and_operator[i+1] == "//":
num_and_operator[i+2] = str(int(num_and_operator[i]) // int(num_and_operator[i+2]))
return num_and_operator[-1]
if __name__ == "__main__":
num_and_operator = []
while True:
num_oper = input()
if num_oper == "=":
break
if num_oper == "/":
num_oper = "//"
num_and_operator.append(num_oper)
print(calculate_program(num_and_operator))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 19698번 : 헛간 청약 (Python) (0) | 2022.05.23 |
---|---|
[BaekJoon] 22193번 : Multiply (Python) (0) | 2022.05.22 |
[BaekJoon] 4150번 : 피보나치 수 (Python) (0) | 2022.05.20 |
[BaekJoon] 23234번 : The World Responds (Python) (0) | 2022.05.19 |
[BaekJoon] 1267번 : 핸드폰 요금 (Python) (0) | 2022.05.18 |
Comments