-Code
def convert(s):
return int("".join(s.split("."))[1:])
n = int(input())
now = convert(input())
res = 0
for _ in range(n):
input_money = convert(input())
now += input_money
if now % 100:
res += 1
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 27475번 Cancel the Trains (0) | 2024.07.07 |
---|---|
[백준/파이썬] 26548번 Quadratics (0) | 2024.07.06 |
[백준/파이썬] 26392번 Desni klik (0) | 2024.07.04 |
[백준/파이썬] 26550번 Ornaments (0) | 2024.07.03 |
[백준/파이썬] 11176번 In the Shower (0) | 2024.07.02 |