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
- 코딩테스트
- Matrix
- Stack
- Number Theory
- bit manipulation
- Method
- simulation
- implement
- database
- SQL
- Binary Search
- java
- Math
- 구현
- Data Structure
- array
- 코테
- hash table
- Binary Tree
- geometry
- string
- dynamic programming
- Class
- Counting
- Tree
- sorting
- 파이썬
- greedy
- two pointers
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 커피 심부름 본문
1. Input, Output, Example
팀의 막내인 철수는 아메리카노와 카페 라테만 판매하는 카페에서 팀원들의 커피를 사려고 한다. 아메리카노와 카페 라테의 가격은 차가운 것과 뜨거운 것 상관없이 각각 4500, 5000원이다. 각 팀원에게 마실 메뉴를 적어달라고 하였고, 그 중에서 메뉴만 적은 팀원의 것은 차가운 것으로 통일하고 "아무거나"를 적은 팀원의 것은 차가운 아메리카노로 통일하기로 했다.
- 카페에서 결제하게 될 금액을 반환
2. Constraint
1) 1 ≤ order의 길이 ≤ 1,000
2) order의 원소는 아래와 같다.
"iceamericano", "americanoice" 차가운 아메리카노
"hotamericano", "americanohot" 따뜻한 아메리카노
"icecafelatte", "cafelatteice" 차가운 카페 라테
"hotcafelatte", "cafelattehot" 따뜻한 카페 라테
"americano" 아메리카노
"cafelatte" 카페 라테
"anything" 아무거나
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int solution(String[] order) {
int answer = 0;
for(String s : order){
if(s.indexOf("lat")!=-1) answer += 5000;
else answer += 4500;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 두 수의 합 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 특정 문자열로 끝나는 가장 긴 부분 문자열 찾기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수열과 구간 쿼리 4 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 날짜 비교하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 문자열 묶기 (0) | 2023.05.01 |