-
백준 2839 [파이썬 PYTHON]알고리즘 Algorithms/백준 BaekJoon 알고리즘 2020. 4. 2. 20:40
파이썬 Python
내 풀이
n = int(input())
five = n//5
n = n%5
while n>=0:
if n%3==0:
three= n//3
n = n%3
break
five -=1
n += 5
if five<0 or three <0:
print("-1")
else: print(five+three)'알고리즘 Algorithms > 백준 BaekJoon 알고리즘' 카테고리의 다른 글
백준 1000번- A+B [Python / C] (0) 2021.09.05 백준 2557 - Hello World! [Python / c] (0) 2021.09.05 백준 1316 [파이썬 Python] (0) 2020.03.30 백준 2941 [파이썬 Python] (0) 2020.03.30 백준 5622 [파이썬 Python] (0) 2020.03.30