[코드그라운드] 연습문제 시험공부
연습문제 3번 시험공부 문제 입니다. > 특정 개수의 과목만 공부 가능하다> 받는 점수가 정해져 있다> 점수 정렬 후 가장 큰 점수를 받는 과목부터 K번째 과목까지의 점수를 합산 123456789101112131415161718192021222324252627282930313233343536373839404142434445#include #include int compare(void *first, void *second){ if(*(int*)first *(int*)second) return -1; else return 0;}int Answer;int main(void){ int T, test_case; setbuf(stdout, NULL); scanf("%d", &T); for(test_case = 0;..