Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 30802 - 웰컴키트(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/30802 |
나누기와 나머지 연산을 통해서, 티셔츠와 펜의 필요한 개수를 구하는 문제입니다.
자세한 것은 코드를 참고해주세요.
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstring>
using namespace std;
long long N;
long long shirt[7];
long long T, P;
long long Tshirt;
int main() {
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 1; i <= 6; i++) cin >> shirt[i];
cin >> T >> P;
for(int i = 1; i <= 6; i++){
if(shirt[i] % T == 0) Tshirt += (shirt[i] / T);
else Tshirt += (shirt[i] / T + 1);
}
cout << Tshirt << "\n";
cout << N / P << " " << N % P;
return 0;
}
질문 및 조언은 댓글을 남겨주세요.
'백준' 카테고리의 다른 글
백준 28702 - FizzBuzz(C++) (0) | 2024.07.06 |
---|---|
백준 31403 - A + B - C(C+) (0) | 2024.07.06 |
백준 14268 - 회사 문화 2(C++) (1) | 2024.06.08 |
백준 14245 - XOR(C++) (0) | 2024.06.07 |
백준 12844 - XOR(C++) (0) | 2024.06.07 |