본문 바로가기
Coding Test/Programmers

[Programmers] Lv 2. 124 나라의 숫자

by song.ift 2023. 7. 28.

https://school.programmers.co.kr/learn/courses/30/lessons/12899

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

cpp
닫기
#include <string> #include <vector> using namespace std; string solution(int n) { ​​​​string answer = "", str = "412"; ​​​​while (n) ​​​​{ ​​​​​​​​answer = str[n % 3] + answer; ​​​​​​​​if (n % 3 == 0) --n; // 3인 경우는 4로 표현하기 때문에 -1 ​​​​​​​​n = n / 3; ​​​​} ​​​​return answer; }

GitHub : https://github.com/developeSHG/Algorithm-Baekjoon_Programmers/commit/1a634ae5837367b8c53ff4ead238b071ebc899ee

 

[level 2] Title: 124 나라의 숫자, Time: 0.01 ms, Memory: 3.81 MB -BaekjoonHub · developeSHG/Algorithm-Baekjoon_Programmers

developeSHG committed Jul 28, 2023

github.com

 

댓글