500error
[코드업: 1165] 축구의 신 풀이 본문
반응형
문제를 풀어보고 답을 보세요
코드업 풀이
#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;
}
반응형
'알고리즘 > C언어' 카테고리의 다른 글
[코드업:1205]최댓값 풀이 (0) | 2023.03.22 |
---|---|
[코드업:1167] 두 번째 수 풀이 (0) | 2023.03.22 |
[코드업:1173] 30분전 문제 풀이 (0) | 2023.03.22 |
[코드업:1098] 설탕과자 뽑기 풀이 (0) | 2023.03.22 |
[코드업:1099] 성실한 개미 풀이 (0) | 2023.03.22 |
Comments