NETWORK & SEVER FACTORY

개인 공부 기록

Study/BAEKJOON

[BAEKJOON] 2884번 : 알람 시계

1nfra 2020. 9. 13. 16:42
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
int main() {
 
    int a = 0, b = 0;
 
    scanf("%d %d"&a, &b);
 
        a = (a + 24* 60 + b - 45;
        b = a % 60;
        a /= 60;
        a %= 24;
 
    printf("%d %d",a,b);
}
cs
728x90

'Study > BAEKJOON' 카테고리의 다른 글

[BAEKJOON] 8393번 : 합  (0) 2020.09.13
[BAEKJOON] 10950번 : A+B - 3  (0) 2020.09.13
[BAEKJOON] 2739번 : 구구단  (0) 2020.09.13
[BAEKJOON] 9498번 : 시험 성적  (0) 2020.09.13
[BAEKJOON] 1330번 : 두 수 비교하기  (0) 2020.09.12