Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 27110 - 특식 배부(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/27110
간단한 사칙연산 문제입니다.
주문한 치킨의 수가 주어졌을 때, 몇명이 자신이 원하는 치킨을 먹는지 구하는 문제입니다.
N개의 치킨과 치킨을 원하는 인원의 값을 비교해, 작은 값을 가져오면 됩니다.
자세한 것은 코드를 참고해주새요
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
#include <deque>
#include <stack>
#define P pair<int,int>
#define F first
#define S second
#define LL long long
using namespace std;
int N;
void solve(){
int ans = 0;
for(int i = 0; i < 3; i++){
int x;
cin >> x;
ans += x > N ? N : x;
}
cout << ans;
}
int main() {
cin.tie(0);
cout.tie(0);
cin >> N;
solve();
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 4673 - 셀프 넘버(C++) (2) | 2023.01.15 |
---|---|
백준 27111 - 출입 기록(C++) (0) | 2023.01.15 |
백준 10942 - 팰린드롬?(C++) (2) | 2023.01.11 |
백준 16174 - 점프왕 쩰리(Large) (C++) (0) | 2023.01.11 |
백준 16173 - 점프왕 쩰리(Small) (C++) (0) | 2023.01.11 |