Updated:

1. 문제 링크

https://www.acmicpc.net/problem/1212

2. 사용 알고리즘

수학

3. 풀이

8진수 한 자리를 2로 나눠 세 자리의 이진수로 표현

(2진수 맨 앞의 0을 지워줘야 한다.)

4. 소스 코드

4-1. C++

https://github.com/dev-aiden/problem-solving/blob/main/boj/1212.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <iostream>
#include <algorithm>

using namespace std;

int main(void) {
    ios_base::sync_with_stdio(false);
    string s; cin >> s;
    int len = s.length();
    string ans;
    for (int i = 0; i < len; ++i) {
        int num = s[i] - 48;
        string temp;
        for (int j = 0; j < 3; ++j) {
            temp += (char)(num % 2) + 48;
            num /= 2;
            if (i == 0 && num == 0) break;
        }
        reverse(temp.begin(), temp.end());
        ans += temp;
    }
    cout << ans << "\n";
    return 0;
}

4-2. JAVA

https://github.com/dev-aiden/problem-solving/blob/main/boj/1212.java

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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String s = br.readLine();
        int len = s.length();
        StringBuilder ans = new StringBuilder();
        for (int i = 0; i < len; ++i) {
            int num = s.charAt(i) - 48;
            StringBuilder temp = new StringBuilder();
            for (int j = 0; j < 3; ++j) {
                temp.append(num % 2);
                num /= 2;
                if (i == 0 && num == 0) break;
            }
            temp.reverse();
            ans.append(temp);
        }
        System.out.println(ans);
    }
}

Updated:

Leave a comment