반응형
11104
-
[백준] 11104 Fridge of Your Dreams with PythonPS 2022. 3. 22. 17:22
📌 BOJ 11104 Fridge of Your Dreams 💡 조건 2진수를 읽어 10진수로 출력하는 문제 진수변환 유형의 문제 🖥 소스 코드 from sys import stdin for _ in range(int(stdin.readline())): print(int(stdin.readline().rstrip(), 2))🔖 예제 및 실행결과 예제 5 000000000000000000000001 000000000001010101010101 000000000000000000001010 101011001010101100101101 111111111111111111111111실행결과 1 5461 10 11316013 16777215⌨️ 문제 풀이 int() 함수를 사용해 2진수를 10진수로 출력해준다. in..