본문 바로가기
백준

[백준 1373] 2진수 8진수, C++

by 황인태(intaehwang) 2020. 1. 13.
반응형

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

 

1373번: 2진수 8진수

첫째 줄에 2진수가 주어진다. 주어지는 수의 길이는 1,000,000을 넘지 않는다.

www.acmicpc.net

 본 문제는 2진수를 8진수로 변환하는 문제다. 이때, string으로 변환해서 풀면 쉽게 풀린다. 프로그래머스에 이런 문제가 많아서 큰 도움이 됐다.

  1. string으로 입력
  2. 자릿수를 3으로 나누어 떨어지게 만들기
  3. 3자리씩 8진수로 변환하기
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
#include <iostream>
#include <cstdio>
#include <string>
#include <cmath>
#include <vector>
 
using namespace std;
 
int main() {
    string s = "";
    // string으로 입력
    getline(cin, s);
    // 자릿수를 3으로 나누어 떨어지게 만들기
    while (s.size() % 3 != 0) {
        s = '0' + s;
    }
    string ans = "";
    for (int i = 0; i < s.size(); i+=3) {
        int tmp = 0;
        // 3자리씩 8진수로 변환하기
        for (int j = i; j < i+3; j++) {
            tmp += (s[j]-'0')*pow(2,2-(j%3));
        }
        ans += to_string(tmp);
    }
    for (int i = 0; i < ans.size(); i++) {
        printf("%c", ans[i]);
    }
}
 
cs

 

반응형

'백준' 카테고리의 다른 글

[백준 2156] 포도주 시식, C++  (0) 2020.01.14
[백준 1212] 8진수 2진수, C++  (0) 2020.01.13
[백준 17087] 숨바꼭질 6, C++  (0) 2020.01.13
[백준 9613] GCD 합, C++  (0) 2020.01.13
[백준] 2225 - 합분해, C++  (0) 2020.01.13
Buy me a coffeeBuy me a coffee

댓글