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 | 31 |
Tags
- math
- scanner
- CSS
- Calendar
- sql
- List
- 큐
- Properties
- GC로그수집
- 리소스모니터링
- deque
- dfs
- alter
- map
- 스프링부트
- string
- JPA
- Union-find
- NIO
- html
- union_find
- BFS
- Java
- javascript
- 스택
- spring boot
- date
- 힙덤프
- set
- priority_queue
Archives
- Today
- Total
매일 조금씩
프로그래머스 level1 : 푸드 파이트 대회 - Java 본문
728x90
반응형
class Solution {
public String solution(int[] food) {
String answer = "0";
for(int i = food.length - 1; i >= 1; i--){
String now = "";
int count = food[i] / 2;
for(int j = 0; j < count; j ++){
now += i;
}
answer = now + answer + now;
}
return answer;
}
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
프로그래머스 level1 : 신고 결과 받기 - Java (0) | 2023.06.02 |
---|---|
프로그래머스 level1 : 성격 유형 검사하기 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 과일 장수 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 크기가 작은 부분문자열 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 개인정보 수집 유효기간 - Java (0) | 2023.06.02 |