No Rules Rules

진법 변환 (feat. 백준, 2745번) 본문

생활/코테

진법 변환 (feat. 백준, 2745번)

개발하는 완두콩 2023. 4. 4. 12:17
728x90
반응형

진법 변환
https://www.acmicpc.net/problem/2745

 

2745번: 진법 변환

B진법 수 N이 주어진다. 이 수를 10진법으로 바꿔 출력하는 프로그램을 작성하시오. 10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <math.h>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    string N;
    register long long B, ans = 0, t1, t2;
    cin >> N >> B;
    t2 = static_cast<long long>(N.size());
    for(auto& ch : N){
        if('0' <= ch && ch <= '9')
            t1 = ch - '0';
        else
            t1 = ch - 'A' + 10;
        ans += t1 * static_cast<long long>(pow(B, --t2));
    }
    cout << ans;
	return 0;
}
// *&)*@*

 

반응형

단순 연산 문제입니다.

728x90
반응형
Comments