Recent Posts
Notice
No Rules Rules
진법 변환 (feat. 백준, 2745번) 본문
728x90
반응형
진법 변환
https://www.acmicpc.net/problem/2745
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
작업 (feat. 백준, 2056번) (0) | 2023.04.04 |
---|---|
진법 변환 2 (feat. 백준, 11005번) (0) | 2023.04.04 |
세탁소 사장 동혁 (feat. 백준, 2720번) (0) | 2023.03.31 |
녹색 옷 입은 애가 젤다지? (feat. 백준, 4485번) (0) | 2023.03.31 |
방탈출 (feat. 백준, 23743번) (0) | 2023.03.30 |
Comments