프로그래머스 120808 분수의 덧셈

Jmnote (토론 | 기여)님의 2023년 11월 7일 (화) 02:22 판 (새 문서: ==개요== ;[https://school.programmers.co.kr/learn/courses/30/lessons/120808 {{PAGENAME}}] <syntaxhighlight lang='cpp'> #include <string> #include <vector> #include <numeric> using...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

프로그래머스 120808 분수의 덧셈
#include <string>
#include <vector>
#include <numeric>

using namespace std;

vector<int> solution(int numer1, int denom1, int numer2, int denom2) {
    int l = lcm(denom1, denom2);
    int n = numer1*(l/denom1) + numer2*(l/denom2);
    int g = gcd(n, l);
    return vector<int>{n/g, l/g};
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}