Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

지극히 개인적인 개발블로그

백준 알고리즘 102050: ACM 호텔 본문

알고리즘

백준 알고리즘 102050: ACM 호텔

코드분쇄기 2019. 10. 3. 18:59

import java.util.Scanner;
public class Sol_10250 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        int floor = 0;      //층
        int room = 0;       //호수
        String mid = "";
        while(T != 0)
        {
            T--;
            int h = sc.nextInt();
            int w = sc.nextInt();
            int n = sc.nextInt();

            if(n > h)
            {
                floor = n % h;
                room = n/h + 1;
                if(room <10)
                    mid = "0";
            }
            else
            {
                floor = h;
                room = n/h;
                if(room <10)
                    mid="0";
            }
            System.out.print(floor);
            System.out.print(mid);
            System.out.println(room);

            floor = 0; mid = ""; room = 0;

        }
    }
}

 

규칙만 잘 찾아내면 됩니다.