반응형
<코드>
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for (int i = 0; i < T; i++) {
int H = sc.nextInt();
int W = sc.nextInt();
int N = sc.nextInt();
int X = (N-1)/H+1;
int Y = N-H*(X-1);
if(X < 10) System.out.println(Y+"0"+X);
else System.out.println(Y+""+X);
}
}
}
https://www.acmicpc.net/problem/10250
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2839번 - 설탕 배달 (0) | 2021.10.04 |
---|---|
[JAVA] 백준 2775번 - 부녀회장이 될테야 (0) | 2021.10.03 |
[JAVA] 백준 2869번 - 달팽이는 올라가고 싶다 (0) | 2021.10.03 |
[JAVA] 백준 1193번 - 분수찾기 (1) | 2021.10.03 |
[JAVA] 백준 2292번 - 벌집 (0) | 2021.10.03 |