programmers.co.kr/learn/courses/30/lessons/42586
부등호 실수로 1,2,4,5번 테케 실패
추가 테케 [99,99,99], [1,1,1] => 출력 : [3]
import math
from collections import deque
def solution(progresses, speeds):
arr = deque([])
for i,j in zip (progresses, speeds) :
arr.append(math.ceil((100-i)/j))
ans = []
while True :
if not arr : break
i = arr.popleft()
cnt = 1
while True :
if not arr :
ans.append(cnt)
break
if i > arr[0] :
arr.popleft()
cnt += 1
else :
ans.append(cnt)
break
return ans
정확성 테스트
테스트 1 〉 | 실패 (0.01ms, 10.2MB) |
테스트 2 〉 | 실패 (0.05ms, 10.3MB) |
테스트 3 〉 | 통과 (0.04ms, 10.1MB) |
테스트 4 〉 | 실패 (0.02ms, 10.2MB) |
테스트 5 〉 | 실패 (0.01ms, 10.2MB) |
테스트 6 〉 | 통과 (0.01ms, 10.2MB) |
테스트 7 〉 | 통과 (0.04ms, 10.2MB) |
테스트 8 〉 | 통과 (0.01ms, 10.2MB) |
테스트 9 〉 | 통과 (0.03ms, 10.3MB) |
테스트 10 〉 | 통과 (0.02ms, 10.1MB) |
테스트 11 〉 | 통과 (0.01ms, 10.2MB) |
채점 결과
정확성: 63.6
합계: 63.6 / 100.0
import math
from collections import deque
def solution(progresses, speeds):
arr = deque([])
for i,j in zip (progresses, speeds) :
arr.append(math.ceil((100-i)/j))
ans = []
while True :
if not arr : break
i = arr.popleft()
cnt = 1
while True :
if not arr :
ans.append(cnt)
break
if i >= arr[0] :
arr.popleft()
cnt += 1
else :
ans.append(cnt)
break
return ans
정확성 테스트
테스트 1 〉 | 통과 (0.01ms, 10.2MB) |
테스트 2 〉 | 통과 (0.05ms, 10.3MB) |
테스트 3 〉 | 통과 (0.04ms, 10.1MB) |
테스트 4 〉 | 통과 (0.02ms, 10.2MB) |
테스트 5 〉 | 통과 (0.01ms, 10.3MB) |
테스트 6 〉 | 통과 (0.01ms, 10.2MB) |
테스트 7 〉 | 통과 (0.04ms, 10.1MB) |
테스트 8 〉 | 통과 (0.01ms, 10.1MB) |
테스트 9 〉 | 통과 (0.03ms, 10.3MB) |
테스트 10 〉 | 통과 (0.06ms, 10.2MB) |
테스트 11 〉 | 통과 (0.01ms, 10.1MB) |
채점 결과
정확성: 100.0
합계: 100.0 / 100.0
'코테' 카테고리의 다른 글
[프로그래머스] <2xn타일링> 파이썬 (0) | 2021.04.04 |
---|---|
[프로그래머스] <삼각 달팽이> 파이썬 (0) | 2021.04.04 |
[프로그래머스] <프린터> 파이썬 (0) | 2021.04.03 |
[프로그래머스] <도둑질> 파이썬 (0) | 2021.04.03 |
[프로그래머스] <N으로 표현> 파이썬 (0) | 2021.04.03 |