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

강재원·2022년 10월 17일
0

[코딩테스트] C/C++

목록 보기
119/200



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

#include<stdio.h>
int main() {
    int n;
    scanf("%d",&n);
    int t=0;
    
    while(n%5!=0){
        n-=3;
        if(n<0){
            t=-1;
            break;
        }
        else t++;
    }
    if(n>=0) t+=n/5;
    printf("%d",t);
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글