일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- swaggerUrl
- securityconfig
- CS50
- container
- springframeworkruntime
- GitHub
- springsecurity
- Swagger
- 컴퓨터과학
- c언어
- Spring
- assume
- assume True
- MVC모듈
- 스프링프레임워크
- assume That
- springboot
- MVC
- DispatcherServlet
- 팀과제
- 파일삭제
- 부스트코스
- Junit5
- assuming That
- .out
- gitbash
- 원격저장소
- .idea
- Git
- springmvc
- Today
- Total
목록Algorithm (2)
도담이 먹여 살려야하는 집사

실제 받은 점수를 5배수의 수로 만들었을때 그 차이를 가지고 실제 받은점수를 올림여부를 구현하는 문제였다. 실제 받은 점수 5배수의 숫자 73 75 5배수의 숫자를 만들어 주기 위해서 실제 받은 점수(grade) 를 5로 나누었을때 나머지를 5에서 빼주면 차이값(dif)이 된다. dif = 5 - (grade % 5); 실제 받은 점수가 38점 보다 아래일 경우 또는 100점일 경우 올림의 경우없이 받은 점수 그대로 반환한다. if( grade < 38 || grade == 100 ){ result.add(grades.get(i)); } 차이값이 3보다 작을경우 5배수 한 점수를 반환한다. 차이값이 3과 같을 경우 실제받은 점수를 그대로 반환한다. else if(dif < 3) { result.add(g..

Problem Alice and Bob each created one problem for HackerRank. A reviewer rates the two challenges, awarding points on a scale from 1 to 100 for three categories: problem clarity, originality, and difficulty. The rating for Alice's challenge is the triplet a = (a[0], a[1], a[2]), and the rating for Bob's challenge is the triplet b = (b[0], b[1], b[2]). The task is to find their comparison points..