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