2455 : 지능형 기차

풀이

기차 뿌뿌

코드

#include <stdio.h>

int s, m;

int main() {
	for (int i = 0; i < 4; i++) {
		int a, b;
		scanf("%d %d", &a, &b);
		s = s - a + b;
		m = m > s ? m : s;
	}

	printf("%d", m);

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge

wookje.kwon's profile image

wookje.kwon

2017-08-20 00:27

Read more posts by this author