728x90
10^9 큰 숫자 대비용 long으로 선언
가로m과 세로n을 각각 a로 나눈 값 x,y를 곱해준다
나눴을 때 나머지가 0이 아닌 경우에는 +1을 해준다
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long m = sc.nextInt();
long n = sc.nextInt();
long a = sc.nextInt();
long x = m/a;
long y = n/a;
if(m%a!=0) x++;
if(n%a!=0) y++;
System.out.println(x*y);
}
}
|
cs |
'알고리즘 풀이 > CodeForces' 카테고리의 다른 글
[CodeForces][JAVA] 118A - String Task (0) | 2021.06.20 |
---|---|
[CodeForces][JAVA] 282A. Bit++ (0) | 2021.06.20 |
[CodeForces][JAVA] 158A.Next Round (0) | 2021.06.20 |
[CodeForces][JAVA] 231A. Team (0) | 2021.06.08 |
[CodeForces][JAVA] 71A. Way Too Long Words (0) | 2021.06.08 |