보안을 그리다, 훈이

[Baekjoon/Python3] 5355번 화성 수학 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 5355번 화성 수학

HooNeee 2020. 12. 5. 21:08

[Baekjoon/Python3] 5355번 화성 수학

 

www.acmicpc.net/problem/5355

 

5355번: 화성 수학

겨울 방학에 달에 다녀온 상근이는 여름 방학 때는 화성에 갔다 올 예정이다. (3996번) 화성에서는 지구와는 조금 다른 연산자 @, %, #을 사용한다. @는 3을 곱하고, %는 5를 더하며, #는 7을 빼는 연산

www.acmicpc.net

 

t = int(input())
res = 0
for i in range(t):
    res = 0
    sol = list(input().split())
    for j in sol:
        if j == sol[0]:
            res += float(j)
        else:
            if j == '@':
                res *= 3
            elif j == '%':
                res += 5
            elif j == '#':
                res -= 7
    print('%.2f' %res)
Comments