질문글 올리고 싶어도 10 개 맞추라 해서 올리지도 못해서 여기에 올려볼게 


문제 번호는 1712 c#으로 만들었어


using System;

using System.Collections.Generic;

using System.Text;


namespace C3Study

{

    class Class1

    {


        static int Main(string[] args)

        {

            uint[] arr = new uint[3] { 0,0,0};

            for (int i = 0; i < arr.Length; i++)

            {

                arr[i] = uint.Parse(Console.ReadLine());

            }

            if (arr[1] >= arr[2])

            {

                Console.WriteLine("-1");

            }

            else

            {

                Console.WriteLine(arr[0] / (arr[2] -arr[1]) + 1);

            }

            return 0;

        }

        


    }

}