Recent Posts
Notice
No Rules Rules
심부름 가는 길 (feat. 백준, 5554번) 본문
728x90
반응형
심부름 가는 길
https://www.acmicpc.net/problem/5554
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int ans(0);
for(register int i = 0, v; i < 4; ++i)
cin >> v, ans += v;
cout << ans / 60 << '\n' << ans % 60;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
문제집 (feat. 백준, 1766번) (0) | 2023.03.28 |
---|---|
ROT13 (feat. 백준, 11655번) (0) | 2023.03.27 |
피보나치 수 4 (feat. 백준, 10826번) (0) | 2023.03.27 |
지능형 기차 (feat. 백준, 2455번) (0) | 2023.03.27 |
사분면 (feat. 백준, 9610번) (0) | 2023.03.27 |
Comments