반응형
Notice
Recent Posts
Link
«   2024/12   »
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 31
Archives
Today
Total
관리 메뉴

500error

[코드업: 1165] 축구의 신 풀이 본문

알고리즘/C언어

[코드업: 1165] 축구의 신 풀이

Internal Server Error 2023. 3. 22. 21:00
반응형

문제를 풀어보고 답을 보세요

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

코드업 풀이

#include <stdio.h>
 
int main() 
{
    int time, a, cnt, rest;
 
    scanf("%d %d", &time, &a);
 
    cnt = (90 - time) / 5;
    rest = (90 - time ) % 5;
 
    a = a + cnt;
 
    if (rest != 0)
        a++;
 
    printf("%d", a);
    return 0;
}

 

 

 

 

 

 

 

내 풀이

#include <stdio.h>


int main() {

    int time, score;

    scanf("%d %d", &time, &score);
    time = 90 - time;
    if (time == 0) {
        printf("%d", score);
    }
    else {
        score += 1;
        if (time >= 5) {
            score += (time - 1) / 5;
        }
        printf("%d", score);



    }
    return 0;
}
반응형
Comments