[백준] 2839번 : 설탕 배달 - C#

강재원·2022년 10월 17일
0

[코딩테스트] C#

목록 보기
119/200



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

using System;

class Program
{
    static void Main() {
        string s=Console.ReadLine();
        int n=int.Parse(s);
        int t=0;
        
        while(n%5!=0){
            n-=3;
            if(n<0){
                t=-1;
                break;
            }
            else t++;
        }
        if(n>0) t+=n/5;
        Console.Write(t);
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글