Open yeonghwanjeon opened 5 years ago
풀이 1
def solution(n, times): answer = 0 now = 0 while True : now += 1 ts = 0 for w in times : ts += now / w if ts >= n : answer = now break return answer
풀이 1