[BaekJoon] 백준 13458번 시험 감독
문제: www.acmicpc.net/problem/13458
내코드
- 그냥.. 계산문제
- 시험장에 응시자가 없는 경우를 간과해서 처음에 틀렸었다.
import math
N = int(input())
member = list(map(int, input().split()))
B, C = map(int, input().split())
def main():
global N, member, B, C
result = 0
for i in range(N):
if member[i] > 0:
member[i] -= B
result += 1
if member[i] > 0:
result += math.ceil(member[i] / C)
print(result)
main()
참고
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[BaekJoon] 백준 1541번 잃어버린 괄호 (0) | 2021.07.13 |
---|---|
[BaekJoon] 백준 1389번 케빈 베이컨의 6단계 법칙 (0) | 2021.07.07 |
[BaekJoon] 백준 3190번 뱀 (0) | 2021.04.22 |
[BaekJoon] 백준 12100번 2048 (Easy) (0) | 2021.04.17 |
[BaekJoon] 백준 13460번 구슬 탈출 2 (0) | 2021.04.16 |