728x90
반응형
문제의 제목이 사칙연산인 단순 사칙연산 문제이다.
for _ in range(int(input())):
li = input().split()
a, b, c = int(li[0]), int(li[2]), int(li[4])
op = li[1]
if op == '+':
t = a+b
elif op == '-':
t = a-b
elif op == '*':
t = a*b
elif op == '/':
t = a//b
print("correct" if t == c else "wrong answer")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1260번 DFS와 BFS(python) (0) | 2021.03.10 |
---|---|
백준 알고리즘 1012번 유기농 배추(python) (0) | 2021.03.10 |
백준 알고리즘 10823번 더하기 2(python) (0) | 2021.03.09 |
백준 알고리즘 10822번 더하기(python) (0) | 2021.03.09 |
백준 알고리즘 10275번 골드 러시(python) (0) | 2021.03.09 |