반응형
츄르사려고 코딩하는 코집사입니다.
1. [백준] 백준 30008번 준영이의 등급 파이썬(Python)
1) 문제번호 : 30008번
2) 문제 출처
https://www.acmicpc.net/problem/30008
2. 풀이
- 학생 수와 과목을 입력받고, 등수에서 100을 곱하여 다시 학생수로 나눈 값이 각 범위에 들어가면 위에서부터 1등급 ~ 9등급까지 담아서 출력하면 된다.
3. 소스 코드
N, K = map(int, input().split())
scoreList = list(map(int ,input().split()))
resultList = []
for score in scoreList :
score *= 100
score = score // N
if score >= 0 and score <= 4 :
resultList.append(1)
elif score > 4 and score <= 11 :
resultList.append(2)
elif score >= 11 and score <= 23 :
resultList.append(3)
elif score >= 23 and score <= 40 :
resultList.append(4)
elif score >= 40 and score <= 60 :
resultList.append(5)
elif score >= 60 and score <= 77 :
resultList.append(6)
elif score >= 77 and score <= 89 :
resultList.append(7)
elif score >= 89 and score <= 96 :
resultList.append(8)
elif score >= 96 and score <= 100 :
resultList.append(9)
for i in resultList :
print(i, end= " ")
반응형
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
[백준] 백준 28431번 양말 짝 맞추기 파이썬(Python) (0) | 2023.11.22 |
---|---|
[백준] 백준 29807번 학번을 찾아줘! 파이썬(Python) (0) | 2023.11.22 |
[백준] 백준 29725번 체스 초보 브실이 파이썬(Python) (0) | 2023.11.22 |
[백준] 백준 29790번 임스의 메이플컵 파이썬(Python) (0) | 2023.11.22 |
[백준] 백준 28691번 정보보호학부 동아리 소개 파이썬(Python) (0) | 2023.11.22 |
[백준] 백준 28352번 10! 파이썬(Python) (0) | 2023.11.22 |
[백준] 백준 30468번 호반우가 학교에 지각한 이유 1 파이썬(Python) (0) | 2023.11.21 |
[백준] 백준 29731번 2033년 밈 투표 파이썬(Python) (0) | 2023.11.21 |
최근댓글