"프로그래머스 132267 콜라 문제"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=1|페이지=2|분류=연습문제}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; int solutio...)
 
 
3번째 줄: 3번째 줄:


==C++==
==C++==
<syntaxhighlight lang='cpp'>
#include <string>
#include <vector>
using namespace std;
int solution(int a, int b, int n) {
    return (n > b ? n - b : 0) / (a - b) * b;
}
</syntaxhighlight>
<syntaxhighlight lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <string>
#include <string>

2023년 12월 2일 (토) 13:06 기준 최신판

1 개요[ | ]

프로그래머스 132267 콜라 문제

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int a, int b, int n) {
    return (n > b ? n - b : 0) / (a - b) * b;
}
#include <string>
#include <vector>

using namespace std;

int solution(int a, int b, int n) {
    int answer = 0;
    while(n >= a) {
        int got = (n / a) * b;
        answer += got;
        n = got + (n % a);
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}