Playground/자바문제집

[백준] 10250번

미숫가루설탕많이 2023. 1. 24. 20:47
import java.util.*;
import java.io.*;
import java.math.*;

public class Main {
   public static void main(String[] args) {
      Scanner sc = new Scanner(System.in);

      int num = sc.nextInt();

      for (int i = 0; i < num; i++) {
         int H = sc.nextInt();  // 층 수
         int W = sc.nextInt();  // 방 수
         int N = sc.nextInt();  // 몇 번째 손님인지

         if (N % H == 0) {
            System.out.println((H * 100) + (N / H));
         } else {
            System.out.println(((N % H) * 100) + ((N / H) + 1));
         }
      }
   }
}

'Playground > 자바문제집' 카테고리의 다른 글

[프로그래머스] 옹알이(1)  (0) 2023.01.25
[백준] 15829번  (0) 2023.01.24
[백준] 4153번  (0) 2023.01.24
[백준] 1085번  (0) 2023.01.24
[백준] 6840번  (0) 2023.01.24