250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 쉬운 알고리즘 문제
- D4
- 알고리즘
- PyQt
- 백준
- 원서읽기
- 코테 준비
- 원서
- sw expert academy
- 알고리즘 문제
- englishbook
- English
- nightroutine
- 직무면접
- 코테
- sw expert
- 원서읽자
- 코딩테스트
- swexpertacademy
- readingbook
- dfs
- MySQL
- SQL
- BFS
- 코테 대비
- 프로그래머스
- the midnight library
- 삼성
- 완전탐색
- STUDYENGLISH
Archives
- Today
- Total
시나브로
[D3] 7732. 시간 개념 본문
728x90
#include <stdio.h>
int main() {
int test_case = 0;
scanf("%d", &test_case);
char buffer = 0;
scanf("%c", &buffer);
for (int q = 0; q < test_case; q++) {
int present_hours = 0;
int present_min = 0;
int present_second = 0;
int future_hours = 0;
int future_min = 0;
int future_second = 0;
int remain_hours = 0;
int remain_second = 0;
int remain_min = 0;
scanf("%d:%d:%d",&present_hours,&present_min,&present_second);
scanf("%d:%d:%d", &future_hours, &future_min, &future_second);
if (present_hours > future_hours||(present_hours==future_hours&&present_min>future_min)||(present_hours==future_hours&&present_min==future_min&&present_second>future_second)) {
future_hours += 24;
}
if (future_second < present_second) {
future_min--;
future_second += 60;
}
remain_second = future_second - present_second;
if (future_min < present_min) {
future_hours--;
future_min += 60;
}
remain_min = future_min - present_min;
remain_hours = future_hours - present_hours;
printf("#%d ", q+1);
if (remain_hours < 10)
printf("0%d:", remain_hours);
else
printf("%d:", remain_hours);
if(remain_min<10)
printf("0%d:", remain_min);
else
printf("%d:", remain_min);
if(remain_second<10)
printf("0%d", remain_second);
else
printf("%d", remain_second);
printf("\n");
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D4] 7810. 승현이의 질문 (0) | 2019.10.06 |
---|---|
[D4] 8382. 방향 전환 (0) | 2019.10.06 |
[D5] 8191. 만화책 정렬하기 (0) | 2019.10.06 |
[D4] 7965. 퀴즈 (0) | 2019.10.06 |
[D3] 8016. 홀수 피라미드 (0) | 2019.10.06 |
Comments