반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 13908
- BOJ
- 소프티어
- boj #19237 #어른 상어
- compose
- softeer
- 파라메트릭
- 성적평가
- 6987
- 연결요소
- 기술면접
- 처우산정
- msSQL
- 퇴사통보
- upper_bound
- 매개변수탐색
- 오퍼레터
- incr
- Docker
- 백준
- 경력
- BFS
- 백트래킹
- 이분탐색
- 물채우기
- Kafka
- 처우협의
- OFFSET
- dfs
- @P0
Archives
- Today
- Total
기술 블로그
11104번 Fridge of Your Dreams 본문
728x90
반응형
https://www.acmicpc.net/problem/11104
2진수를 10진수로 변환하는 문제이다.
문자열로 입력받는다.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <sstream> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; int main(void) { int n = 0; scanf("%d", &n); while (n--) { int ans = 0; string s; cin >> s; reverse(s.begin(), s.end()); for (int i = 0; i < s.length(); i++) ans += (int)pow((double)2, (double)i) * (s.at(i) - '0'); cout << ans << '\n'; } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
10093번 숫자 (0) | 2019.04.19 |
---|---|
16235번 나무 재테크 (0) | 2019.04.19 |
2292번 벌집 (0) | 2019.04.18 |
17140번 이차원 배열과 연산 (0) | 2019.04.18 |
4677번 Oil Deposits (0) | 2019.04.17 |