250210 GCD(n, k) = 1

Jongleee·2025년 2월 10일
0

TIL

목록 보기
805/859
public static void main(String[] args) throws IOException {
	BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	long n = Long.parseLong(br.readLine());
	System.out.println(computeTotient(n));
}

private static long computeTotient(long n) {
	long result = n;
	for (long i = 2; i * i <= n; i++) {
		if (n % i == 0) {
			result = result / i * (i - 1);
		}
		while (n % i == 0) {
			n /= i;
		}
	}
	if (n > 1) {
		result = result / n * (n - 1);
	}
	return result;
}

출처:https://www.acmicpc.net/problem/11689

0개의 댓글

관련 채용 정보