Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드스튜디오
- Python
- C++
- 동적계획법과최단거리역추적
- 안드로이드
- 개발
- DFS와BFS
- codingtest
- DFS
- 코드품앗이
- 알고리즘
- Flutter
- cos pro
- 코딩테스트
- BAEKJOON
- 분할정복
- 코테
- cos pro 1급
- Algorithm
- 동적계획법
- django
- cos
- DART
- vuejs
- 백준
- android
- AndroidStudio
- Vue
- issue
- 파이썬
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 3차 8번 : 선풍기를 몇대 사야 하나요 본문
728x90
반응형
문제 유형
한줄 수정
난이도
easy
Note
Nothing
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
def solution(k, student):
answer = 0
for s in student:
s -= 4*k
if s <= 0:
continue
answer += (s + k - 1) // k
return answer
k1 = 1
student1 = [4, 4, 4, 4]
ret1 = solution(k1, student1)
print("solution 함수의 반환 값은", ret1, "입니다.")
k2 = 3
student2 = [15, 17, 19, 10, 23]
ret2 = solution(k2, student2)
print("solution 함수의 반환 값은", ret2, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 3차 10번 : 밥먹고 머리자르고 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 3차 9번 : 팝업 스토어를 열 최적의 날짜 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 7번 : 카프리카 수 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 6번 : 소수의 합으로 표현하기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 5번 : 전광판 문구 출력 (0) | 2022.02.25 |
Comments