본문 바로가기
백준 알고리즘/구현

백준 13458번 C++

by paysmile 2019. 1. 26.

#include<iostream>

using namespace std;


const int MAX = 1000001;

int n, b, c;

int student[MAX];


void calexam() {

long long ans = 0;


for (int i = 0; i < n; i++) {

ans++;

if (student[i] > b) {

student[i] -= b;

ans += student[i] / c;

if (student[i] % c > 0)

ans++;

}

}

cout << ans << endl;

}


int main(void) {

cin >> n;

for (int i = 0; i < n; i++) {

cin >> student[i];

}

cin >> b >> c;

calexam();

}

'백준 알고리즘 > 구현' 카테고리의 다른 글

백준 5565번 C++  (0) 2019.02.18
백준 5543번 C++  (0) 2019.02.18
백준 1890번 C++  (0) 2019.01.23
백준 7568번 C++  (0) 2019.01.05
백준 10797번 C++  (0) 2019.01.02