전체 글263 백준 1373 ▶ 1373문제 - 2진수 8진수 ▶ 풀이방법 - 2진수 -> 10진수 변환 - >8진수 변환 (시간초과 오류 발생) import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); String str = br.readLine(); Stack stack = new Stack(); //2진수 수 담는 공.. 2022. 4. 1. 백준 2745 ▶ 2745번 문제 - 진법변환 - 11005번의 반대되는 문제 ( https://shinny.tistory.com/156 ) - 입력된 두 숫자 N, B - B진법 형태 숫자 N을 10진법으로 변환하는 문제 (B범위 : 2 2022. 3. 31. 백준 11005 ▶ 11005번 문제 - 진법변환2 - 입력된 두 숫자 N, B - 숫자 N을 B진법 형태로 변환하는 문제 ( N은 10억보다 작거나 같음(Long형), B범위 : 2 9 ? (a%b + 55) : (a%b + 48); } } 2022. 3. 31. 백준 1850 ▶ 1850번 문제 - 최대공약수 ▶ 풀이방법 ++ 9613번 문제와 비슷( https://shinny.tistory.com/154 ) import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st = new StringTokenizer(br.readLine()); .. 2022. 3. 31. 이전 1 ··· 26 27 28 29 30 31 32 ··· 66 다음