SWEA/[D3]

[D3] SWEA9997 미니멀리즘 시계

ruming 2020. 9. 11. 23:56

시침밖에 없는 시계

12시간은 720분이므로 360°인 시계는 2분에 1°가 움직인다고 할 수 있다.

60분에 30°씩 움직이므로 x°를 30으로 나누면 시, 30으로 나눈 나머지에 2를 곱하면 분이 된다. 

#include <stdio.h>
int main(void){
	int x;
	int testCase, T;
	scanf("%d", &T);
	for(testCase=1; testCase<=T; testCase++){
		scanf("%d", &x);
		printf("#%d %d %d\n", testCase, x/30, x%30*2);
	}
}

swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AXIvNBzKapEDFAXR&categoryId=AXIvNBzKapEDFAXR&categoryType=CODE

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

'SWEA > [D3]' 카테고리의 다른 글

[D3] SWEA 10726 이진수표현  (0) 2020.11.02
[D3] SWEA10059 유효기간  (0) 2020.09.26
[C언어] SWEA 10505 - 소득 불균형  (0) 2020.09.20
[D3] SWEA10032 과자 분배  (0) 2020.09.20
[D3] SWEA10200 구독자 전쟁  (0) 2020.09.11