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
- Binary Tree
- Matrix
- database
- sorting
- 구현
- Data Structure
- implement
- Math
- greedy
- bit manipulation
- two pointers
- Binary Search
- Method
- 파이썬
- simulation
- array
- Stack
- Class
- hash table
- SQL
- java
- 코테
- geometry
- 자바
- string
- Counting
- dynamic programming
- 코딩테스트
- Number Theory
- Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 369게임 본문
1. Input
1) 머쓱이가 말해야하는 숫자 order
2. Output
1) 머쓱이가 쳐야할 박수 횟수
2) order에 들어가는 3, 6, 9의 개수만큼 박수를 친다.
3. Constraint
1) 1 <= order <= 1,000,000
4. Example
Input: order=29423 -> Output: 2
설명: 3이 1개, 9가 1개이므로 2번을 쳐야 한다.
5. Code
1) 첫 코드(2022/10/28)
int answer = 0;
while(order>=1){
int r = order % 10;
answer += (r%3==0 && r!=0) ? 1 : 0;
order /= 10;
}
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 대문자와 소문자 (0) | 2022.10.28 |
---|---|
[프로그래머스/Lv.0] 암호 해독 (0) | 2022.10.28 |
[프로그래머스/Lv.0] 가까운 수 (0) | 2022.10.28 |
[프로그래머스/Lv.0] 컨트롤 제트 (0) | 2022.10.28 |
[프로그래머스/Lv.0] 삼각형의 완성조건 (1) (0) | 2022.10.28 |