ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 5086번: 배수와 약수
    정수론(Number theory) 2018. 6. 21. 17:10
    반응형

    https://www.acmicpc.net/problem/5086


    1. 문제

    4 × 3 = 12이다.

    이 식을 통해 다음과 같은 사실을 알 수 있다.

    3은 12의 약수이고, 12는 3의 배수이다.

    4도 12의 약수이고, 12는 4의 배수이다.

    두 수가 주어졌을 때, 다음 3가지 중 어떤 관계인지 구하는 프로그램을 작성하시오.

    1. 첫번째 숫자가 두번째 숫자의 약수이다.
    2. 첫번째 숫자가 두번째 숫자의 배수이다.
    3. 첫번째 숫자가 두번째 숫자의 약수와 배수 모두 아니다.


    2. 알고리즘

    배수 판별식 - K % N == 0 / N % K == N

    약수 반별식 - N % K == 0 / K % N == K


    3. 코드

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    #include <iostream>
    #include <sstream>
    #include <string>
    #include <algorithm>
    #include <functional>
    #include <vector>
    #include <list>
    #include <queue>
    #include <deque>
    //#include <map>
    #include <set>
    #include <stack>
    #include <cstring>
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
     
    using namespace std;
     
    int dx[4= {1-100};
    int dy[4= {00-11};
     
     
    int main() {
     
        
        while (true) {
            int n,k; cin >> n >> k;
            if (n+==0) {
                break;
            }
     
            if (k % n == && n % k == n) {
                cout << "factor" << "\n";
            } else if(n % k ==&& k % n == k) {
                cout << "multiple" << "\n";
            } else {
                cout << "neither" << "\n";
            }
        }
        return 0;
    }
     
    cs

    반응형

    '정수론(Number theory)' 카테고리의 다른 글

    백준 4673번: 셀프 넘버  (0) 2018.06.29
    백준 10610번: 30  (0) 2018.06.29
    백준 2581번 : 소수  (0) 2018.06.20
    백준 1978번 : 소수 찾기  (0) 2018.06.20
    프로그래머스 Level1 > 정수 제곱근 판별  (0) 2018.06.14

    댓글

Designed by Tistory.