문제 : https://www.acmicpc.net/problem/10250
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
String[] result = new String[num];
for (int i = 0; i < num; i++) {
int h = scan.nextInt();
int w = scan.nextInt();
int c = scan.nextInt();
int clientH = 0;
int clientW = 0;
if (c % h == 0) {
clientH = h;
clientW = c / h;
} else {
clientW = c / h + 1;
clientH = c % h;
}
result[i] = String.format("%d%02d", clientH, clientW);
}
for (String res : result) {
System.out.println(res);
}
scan.close();
}
}
'알고리즘 > 심심풀이 문제풀기' 카테고리의 다른 글
[심심풀이 백준문제풀기] 2775번 부녀회장이 될테야 (0) | 2018.03.04 |
---|---|
[심심풀이 백준문제풀기] 1924번 2007년 (0) | 2018.03.04 |
[심심풀이 백준문제풀기] 1011번 Fly me to the Alpha Centauri (0) | 2018.03.03 |
[심심풀이 백준문제풀기] 2438번 별찍기 - 1 (0) | 2018.03.03 |
[심심풀이 백준문제풀기] 2292번 벌집 (0) | 2018.03.03 |