[문제 링크] : https://www.acmicpc.net/problem/1350#include #include using namespace std;int N, M;long long inp, Ans = 0;vector V;int main(){ cin >> N; for(int i=0; i> inp; V.push_back(inp); } cin >> M; for(int i=0; i M){ if(V[i] % M == 0){ Ans += V[i] / M; } else{ Ans += V[i] / M + 1; } } el..