Recent Posts
Notice
No Rules Rules
출석 이벤트 (feat. 백준, 25704번) 본문
728x90
반응형
출석 이벤트
https://www.acmicpc.net/problem/25704
반응형
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, P, ans, arr[4]{0};
cin >> N >> P;
if(N >= 5)
arr[0] = 500;
if(N >= 10)
arr[1] = P * 0.1;
if(N >= 15)
arr[2] = 2000;
if(N >= 20)
arr[3] = P * 0.25;
ans = *max_element(arr, arr + 4);
ans = P - ans;
if(ans < 0)
ans = 0;
cout << ans;
return 0;
}
// *&)*@*
- 입력받은 도장의 개수를 기준으로 4가지 조건에 대한 할인 금액을 모두 구해봅니다. (조건에 해당되는 인덱스에 할인 금액이 채워지게 됩니다.)
- 그중 가장 큰 값을 구하고 P-max 를 구합니다.
단, 이때 결과가 0보다 작다면 출력은 0 으로 해야 합니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
스도쿠 (feat. 백준, 2239번) (0) | 2022.10.05 |
---|---|
말이 되고픈 원숭이 (feat. 백준, 1600번) (1) | 2022.10.04 |
포인터 공부 (feat. 백준, 25703번) (0) | 2022.10.04 |
탑 (feat. 백준, 2493번) (0) | 2022.10.04 |
문자열 폭발 (feat. 백준, 9935번) (0) | 2022.10.04 |
Comments