Recent Posts
Notice
No Rules Rules
전자레인지 (feat. 백준, 10162번) 본문
728x90
반응형
전자레인지
https://www.acmicpc.net/problem/10162
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int A = 60 * 5, B = 60, C = 10, T, ans1, ans2, ans3;
cin >> T;
ans1 = T / A, T %= A;
ans2 = T / B, T %= B;
ans3 = T / C, T %= C;
if(T != 0)
cout << -1;
else
cout << ans1 << " " << ans2 << " " << ans3;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
단어 뒤집기 (feat. 백준, 9093번) (0) | 2022.10.21 |
---|---|
욕심쟁이 판다 (feat. 백준, 1937번) (0) | 2022.10.21 |
방 번호 (feat. 백준, 1475번) (0) | 2022.10.21 |
그림 (feat. 백준, 1926번) (0) | 2022.10.20 |
경쟁적 전염 (feat. 백준, 18405번) (0) | 2022.10.20 |
Comments