Contents

[백준]10833 사과

Contents

https://www.acmicpc.net/problem/10833

풀이:

배정된 사과 수를 학생수로 나눈 나머지를 모두 더해 출력한다.

코드:

사용언어 : c++

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#include <iostream>
using namespace std;
int N, a, b, c = 0;
int main() {
	cin >> N;
	while (N--) {
		cin >> a >> b;
		c += b % a;
	}
	cout << c << endl;
}