반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
직렬버전과 병렬버전을 시도했을 때의 시간을 비교합니다.
3. 코드
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
d, n, s, p = map(int, input().split())
# 병렬이 좋음
if d + n*p < n*s:
print("parallelize")
elif d + n*p > n*s:
print("do not parallelize")
else:
print("does not matter")
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 16479 컵라면 측정하기 - 파이썬(Python) (0) | 2023.01.23 |
---|---|
[구현/수학] 백준 17350 2루수 이름이 뭐야 - 파이썬(Python) (0) | 2023.01.22 |
[구현/수학] 백준 20361 일우는 야바위꾼 - 파이썬(Python) (0) | 2023.01.20 |
[구현/수학] 백준 9094 수학적 호기심 - 파이썬(Python) (0) | 2023.01.19 |
[구현/수학] 백준 20360 Binary numbers - 파이썬(Python) (0) | 2023.01.18 |
댓글