본문 바로가기

BOJ/C++

서로소

 
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
#include <iostream>
 
using namespace std;
 
typedef long long ll;
 
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    ll n;
    while (1) {
        cin >> n;
 
        if (!n) break;
 
        //소인수분해한다. 
 
        ll tmp = n;
        ll res = n;
        for (ll i = 2; i*<= tmp; i++)
        {
            if (n % i == 0) {
                while ((n%i) == 0) {
                    //나눠질때까지 나눈다. (이 수의 배수들도 모두 서로소가 아니기 때문에)
                    n /= i;
                }
                res -= res / i;
            
            }
        }
        if (n > 1) res -= res / n;
        cout << res << '\n';
    }
 
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > C++' 카테고리의 다른 글

1  (0) 2020.02.06
보이는 점  (0) 2020.02.06
내려가기  (0) 2020.02.05
부분구간의 합  (0) 2020.02.05
[BOJ] 가르침  (0) 2020.02.04