250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 코테 대비
- English
- 직무면접
- 삼성
- the midnight library
- englishbook
- 쉬운 알고리즘 문제
- 원서읽기
- 원서읽자
- MySQL
- 코딩테스트
- 원서
- D4
- BFS
- 알고리즘
- readingbook
- 코테
- PyQt
- 완전탐색
- swexpertacademy
- 알고리즘 문제
- 프로그래머스
- nightroutine
- sw expert academy
- sw expert
- STUDYENGLISH
- dfs
- 코테 준비
- 백준
Archives
- Today
- Total
시나브로
[D4] 6719. 성수의 프로그래밍 강좌 시청 본문
728x90
#include <stdio.h>
int compare(const void *a, const void *b) // 오름차순 비교 함수 구현
{
int p1 = *(int *)a;
int p2 = *(int *)b;
if (p1 < p2)
return -1;
else if (p1 > p2)
return 1;
return 0;
}
int main() {
int test_number = 0;
scanf("%d\n", &test_number);
for (int p = 0; p < test_number; p++) {
int total_lesson_number = 0;
int my_lessson_number = 0;
int lessons[210] = { 0 };
scanf("%d %d", &total_lesson_number, &my_lessson_number);
for (int i = 0; i < total_lesson_number; i++)
scanf("%d", &lessons[i]);
qsort(lessons, total_lesson_number, sizeof(int), compare);
double my_score = 0;
for (int i = total_lesson_number-my_lessson_number; i < total_lesson_number; i++) {
my_score = (double) (my_score + lessons[i]) / 2;
}
printf("#%d %lf\n",p+1, my_score);
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 5431. 민석이의 과제 체크하기 (0) | 2019.10.06 |
---|---|
[D3] 7087. 문제 제목 붙이기 (0) | 2019.10.06 |
[D3] 6913. 동철이의 프로그래밍 대회 (0) | 2019.10.06 |
[D2] 2007. 패턴 마디의 길이 (0) | 2019.10.06 |
[D3] 3456. 직사각형 길이 찾기 (0) | 2019.10.06 |
Comments