728x90 분류 전체보기249 [백준] 22193번 : Multiply(JAVA) https://www.acmicpc.net/problem/22193 22193번: Multiply Write a program that computes a product of two non-negative integers A and B. The integers are represented in decimal notation and have N and M digits, respectively. www.acmicpc.net 풀이 숫자가 큰 곱셈입니다. BigInteger을 사용해서 풀어주면 됩니다. 소스코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.Big.. 2021. 7. 25. [백준] 5489번 : Numbers(JAVA) https://www.acmicpc.net/problem/5489 5489번: Numbers You are to write a program, which, given N positive integer values X1, X2, ..., XN, computes the smallest number Xi that appears in the sequence at least as many times as any other number. www.acmicpc.net 풀이 N을 입력받고 N개의 숫자를 입력받았을 때 가장 작은 수 중 가장 많이 등장한 수를 찾는 문제입니다. 범위가 10000의 수중 가져오는 것이므로 10001크기의 배열을 구해주고 N번 입력받은 수의 위치를 1 더해줍니다. 배열의 크기만큼 for문을 .. 2021. 7. 24. [백준] 4562번 : No Brainer(JAVA) https://www.acmicpc.net/problem/4562 4562번: No Brainer For each data set, there will be exactly one line of output. This line will be "MMM BRAINS" if the number of brains the zombie eats is greater than or equal to the number of brains the zombie requires to stay alive. Otherwise, the line will be "NO BRAINS". www.acmicpc.net 풀이 첫번째 입력받은 수가 두번째 입력받은 수보다 작으면 "NO BRAINS", 아니면 "MMM BRAINS"을 출력하면 되는.. 2021. 7. 22. [백준] 13773번 : Olympic Games(JAVA) https://www.acmicpc.net/problem/13773 13773번: Olympic Games Input will consist of a list of years, one per line, in the range 1860 to 2030 inclusive. The final year will be 0 – do not process that year. www.acmicpc.net 풀이 올림픽의 개최된 날이면 "Summer Olympics", 세계전쟁 중이면 "Games cancelled", 아직 올림픽 개최지가 선택되지 않았으면 "No city yet chosen", 모두 다 아니면 "No summer games"을 출력해주면 되는 문제입니다. 첫 개최년도는 1896년, 2020년에 도교올림픽이.. 2021. 7. 22. 이전 1 ··· 54 55 56 57 58 59 60 ··· 63 다음 728x90