[백준] 10250번 : ACM 호텔 - C#

강재원·2022년 10월 2일
0

[코딩테스트] C#

목록 보기
88/200



https://www.acmicpc.net/problem/10250

using System;

class Program
{
    static void Main() {
        int t=int.Parse(Console.ReadLine());
        for(int i=0;i<t;i++){
            string[] s=Console.ReadLine().Split(' ');
            int h=int.Parse(s[0]);
            int w=int.Parse(s[1]);
            int n=int.Parse(s[2]);
            if(n%h==0) Console.WriteLine("{0}{1:D2}",h,n/h);
            else Console.WriteLine("{0}{1:D2}",n%h,(n/h)+1);
        }
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글