문제 링크
https://www.acmicpc.net/problem/13458
문제
문제 풀이
import sys, math
input = sys.stdin.readline
n = int(input())
a = list(map(int, input().split()))
b, c = map(int, input().split())
result = n
for i in a:
i -= b
if i > 0:
result += math.ceil(i / c)
print(result)
'Algorithm > BOJ' 카테고리의 다른 글
[백준] 2559 수열 (코틀린 kotlin) (0) | 2024.02.02 |
---|---|
[백준] 1931 회의실 배정 (코틀린 kotlin) (0) | 2024.02.01 |
[백준] 14890 경사로 (파이썬 python) (0) | 2022.03.13 |
[백준] 14889 스타트와 링크 (파이썬 python) (0) | 2022.03.08 |
[백준] 14888 연산자 끼워넣기 (파이썬 python) (0) | 2022.03.08 |