본문 바로가기

Algorithm

(C++) - 백준(BOJ) 2460번 : 지능형 기차2

반응형
#include <iostream>
using namespace std;
int main() {
    int a, b, total = 0, big = 0;
    for (int i = 0; i < 10; i++)
    {
        cin >> a >> b;
        total += -a + b;
        if (total > big)
            big = total;
    }
    cout << big;

}