-
백준 1850번: 최대공약수정수론(Number theory) 2018. 7. 3. 10:03반응형
https://www.acmicpc.net/problem/1850
1. 문제
모든 자리가 1로만 이루어져있는 두 자연수 A와 B가 주어진다. 이 때, A와 B의 최대 공약수를 구하는 프로그램을 작성하시오.
예를 들어, A가 111이고, B가 1111인 경우에 A와 B의 최대공약수는 1이고, A가 111이고, B가 111111인 경우에는 최대공약수가 111이다.
2. 알고리즘
키워드 - 정수론, 유클리드 호제법
문제 이해를 잘 해야 한다. 공약수만큼 1을 출력 하는 문제다.
3. 코드
1234567891011121314151617181920212223#include <iostream>#include <algorithm> // min#include <math.h>#include <string>#include <vector>using namespace std;typedef unsigned long long ull;ull gcd(ull a, ull b) {return (a % b == 0 ? b : gcd(b, a % b));}int main() {ios::sync_with_stdio(false); cin.tie(0); // scanf 안쓸 경우 쓰세요. Cin 사용시ull a, b; cin >> a >> b;ull sol = gcd(a, b);for (int i = 0; i < sol; ++i)cout << '1';return 0;}cs 반응형'정수론(Number theory)' 카테고리의 다른 글
백준 10610번: 30 (0) 2018.07.10 백준 10757번: 큰 수 A+B (0) 2018.07.03 백준 1065번: 한수 (0) 2018.07.03 백준 13241번: 최소공배수 (0) 2018.07.03 백준 1019번: 책 페이지 (0) 2018.07.01