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 | 31 |
Tags
- 프로그래머스 문자열 정렬
- COS Pro
- 프로그래머스 자바
- 백준
- lv0
- 스프링부트 도커로 배포
- 클라이언트
- 프로그래머스 풀이
- 자바
- 큐
- StringTokenizer
- 백준 N과 M 자바
- Lv1
- Programmers
- 오름차순 정렬
- 문자열
- Stack
- 버퍼
- lv2
- 스프링부트 도커 배포
- 삼각형의 완성조건
- 스택
- index of
- 프로그래머스
- 스프링부트 도커
- java
- SWEA
- 이진수 변환
- 알고리즘
- Queue
Archives
- Today
- Total
mun dev
[COS PRO 1급] 2-1 도서 대여점 운영 자바(Java) 본문
문제링크
문제유형
프로그램 빈 칸 채우기 문제
문제
class Main {
interface Book{
public int getRentalPrice(int day);
}
class ComicBook _____ {
_____ {
int cost = 500;
day -= 2;
if(day > 0)
cost += _____;
return cost;
}
}
class Novel _____ {
_____ {
int cost = 1000;
day -= 3;
if(day > 0)
cost += _____;
return cost;
}
}
public int solution(String[] bookTypes, int day) {
Book[] books = new Book[50];
int length = bookTypes.length;
for(int i = 0; i < length; ++i){
if(bookTypes[i].equals("comic"))
books[i] = new ComicBook();
else if(bookTypes[i].equals("novel"))
books[i] = new Novel();
}
int totalPrice = 0;
for(int i = 0; i < length; ++i)
totalPrice += books[i].getRentalPrice(day);
return totalPrice;
}
문제 풀이
class Main {
interface Book{
public int getRentalPrice(int day);
}
class ComicBook implements Book {
public int getRentalPrice(int day){
int cost = 500;
day -= 2;
if(day > 0)
cost += 400;
return cost;
}
}
class Novel implements Book {
public int getRentalPrice(int day){
int cost = 1000;
day -= 3;
if(day > 0)
cost += 300;
return cost;
}
}
public int solution(String[] bookTypes, int day) {
Book[] books = new Book[50];
int length = bookTypes.length;
for(int i = 0; i < length; ++i){
if(bookTypes[i].equals("comic"))
books[i] = new ComicBook();
else if(bookTypes[i].equals("novel"))
books[i] = new Novel();
}
int totalPrice = 0;
for(int i = 0; i < length; ++i)
totalPrice += books[i].getRentalPrice(day);
return totalPrice;
}
'알고리즘 > COS PRO 1급' 카테고리의 다른 글
[COS PRO 1급] 2-3 경품 당첨자를 구해주세요 자바(Java) (0) | 2023.11.25 |
---|---|
[COS PRO 1급] 2-2 지하철 기다리기 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 1-10 주식으로 최대의 수익을 내세요 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 1-9 계단 게임 자바(Java) (0) | 2023.11.25 |
[COS PRO 1급] 1-8 누가 당선 되나요 자바(Java) (0) | 2023.11.25 |