일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 백준
- col -1 from CursorWindow
- python
- pwnable.kr
- Drive-By-Download
- pwnable
- 파이썬
- 액션바 필요없숴
- java.lang.IllegalStateException
- 클라우드란?
- Docker
- 블록체인
- 쏘큩
- Make sure the Cursor is initialized correctly before accessing data for it.
- 6566
- kotlin
- SQLiteConstraintException
- Couldn't read row 0
- 나이순 정렬
- 코틀린
- cmd1
- pwable.kr
- tlqkf
- UNIQUE constraint failed
- 10814
- cmd2
- 페니빙
- 포너블
- 애너그램 그룹
- 클라우드가 뭐야
- Today
- Total
목록분류 전체보기 (112)
푸르미르
인성이 의심되는 세준이의 기말고사 평균을 구하는 문제이다. 간단하다. 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) #평균 출력 Colored by Color Scripter cs www.acmicpc.net/problem/1546
OX문제이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 case=int(input()) #테스트 케이스 개수 입력 score_list=[] #한 케이스의 OX결과 total=0 #한 케이스의 총점 xloc=0 #바로 전의 X의 location for i in range(case): quizResult=input() quizResult.upper() #혹시 모를, 대문자화 for j in range(len(quizResult)): if quizResult[j]=='O': total+=quizResult.count('O',xloc,j+1) #이 문제의 키 포인트 else: xloc=j #이 문제의 키포인트2 print(total) total=0 #주의! xloc=0 #주의! Color..