No Rules Rules

지능형 기차 (feat. 백준, 2455번) 본문

생활/코테

지능형 기차 (feat. 백준, 2455번)

개발하는 완두콩 2023. 3. 27. 12:15
728x90
반응형

지능형 기차
https://www.acmicpc.net/problem/2455

 

2455번: 지능형 기차

최근에 개발된 지능형 기차가 1번역(출발역)부터 4번역(종착역)까지 4개의 정차역이 있는 노선에서 운행되고 있다. 이 기차에는 타거나 내리는 사람 수를 자동으로 인식할 수 있는 장치가 있다.

www.acmicpc.net

 

// 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
반응형
Comments