본문 바로가기

분류 전체보기183

[BOJ 7576번] 토마토(JAVA) www.acmicpc.net/problem/7576 7576번: 토마토 첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토� www.acmicpc.net import java.io.*; import java.util.*; class Dot{ int x, y; Dot(int x, int y){ this.x=x; this.y=y; } } class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw=new.. 2020. 9. 23.
백준 3052 / C / 나머지 / * #include int main(void) { int arr[10]; int cnt = 0; int result = 0; for (int i = 0; i < 10; i++) { scanf("%d", &arr[i]); arr[i] = arr[i] % 42; } for (int i = 0; i < 10; i++) { for (int j = 0; i < 10 j++) { if (arr[i] == arr[j]) cnt++; } if (cnt == 0) result++; } printf("%d", result); return 0; } 문제 : 두 자연수 A와 B가 있을 때, A%B는 A를 B로 나눈 나머지 이다. 예를 들어, 7, 14, 27, 38을 3으로 나눈 나머지는 1, 2, 0, 2이다. 수 10개를 입.. 2020. 9. 23.
[BOJ 2178번] 미로탐색(JAVA) www.acmicpc.net/problem/2178 2178번: 미로 탐색 첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다. www.acmicpc.net import java.io.*; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw=new BufferedWriter(new OutputSt.. 2020. 9. 22.
백준 2577 / 숫자의 개수 / C / * #include int main(void) { int a, b, c; int arr[10]; int total; arr[10] = { 0 }; total = a * b * c; scanf("%d%d%d", &a, &b, &c); while (total != 0){ arr[total % 10]++; total = total / 10; } for(int i = 0; i < 10; i++){ printf("%d\n", arr[i]); } return 0; } 문제 : 세 개의 자연수 A, B, C가 주어질 때 A×B×C를 계산한 결과에 0부터 9까지 각각의 숫자가 몇 번씩 쓰였는지를 구하는 프로그램을 작성하시오. 예를 들어 A = 150, B = 266, C = 427 이라면 A × B × C = 150 × .. 2020. 9. 22.