Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- cmd2
- Make sure the Cursor is initialized correctly before accessing data for it.
- 애너그램 그룹
- 페니빙
- python
- kotlin
- pwable.kr
- 쏘큩
- 클라우드가 뭐야
- Couldn't read row 0
- 클라우드란?
- 파이썬
- 백준
- pwnable.kr
- SQLiteConstraintException
- java.lang.IllegalStateException
- Docker
- 코틀린
- 액션바 필요없숴
- col -1 from CursorWindow
- tlqkf
- 10814
- UNIQUE constraint failed
- Drive-By-Download
- cmd1
- 나이순 정렬
- pwnable
- 6566
- 포너블
- 블록체인
Archives
- Today
- Total
푸르미르
[python]1546.평균 본문
인성이 의심되는 세준이의 기말고사 평균을 구하는 문제이다.
간단하다.
1
2
3
4
5
6
7
8
9
|
subject=int(input()) #과목 수 입력
realScore_list=list(map(int, input().split())) #각 과목당 점수 입력
fakeScore_list=[] #조작한 점수를 담는 리스트
Max=max(realScore_list) #세준이의 원래 기말고사 점수중 최고 점수
for i in realScore_list:
fakeScore_list.append(i/Max*100) #점수 조작
print(sum(fakeScore_list)/subject) #평균 출력
|
cs |
'Baekjoon Online Judge' 카테고리의 다른 글
[python]3052.나머지 (2) | 2021.01.01 |
---|---|
[python]2577.숫자의 개수 (0) | 2021.01.01 |
[python]2562.최댓값 (0) | 2021.01.01 |
[python]10818.최소, 최대 (0) | 2021.01.01 |
[python]8958.OX퀴즈 (7) | 2021.01.01 |