백준 7569번1 [BOJ 7569번] 토마토(JAVA) www.acmicpc.net/problem/7569 7569번: 토마토 첫 줄에는 상자의 크기를 나타내는 두 정수 M,N과 쌓아올려지는 상자의 수를 나타내는 H가 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, www.acmicpc.net import java.io.*; import java.util.*; class Dot{ int x, y, z; Dot(int z, int x, int y){ this.x=x; this.y=y; this.z=z; } } class Main{ static BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); stati.. 2020. 9. 24. 이전 1 다음