mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 12:38:47 +00:00
27 lines
426 B
C++
27 lines
426 B
C++
|
#include <bits/stdc++.h>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int n, x;
|
||
|
|
||
|
int phi(int x) {
|
||
|
int res = x;
|
||
|
for (int i = 2; i * i <= x; i++) {
|
||
|
if (x % i == 0) {
|
||
|
res = res / i * (i - 1);
|
||
|
while (x % i == 0) x /= i;
|
||
|
}
|
||
|
}
|
||
|
if (x > 1) res = res / x * (x - 1);
|
||
|
return res;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
cin >> n;
|
||
|
while (n--) {
|
||
|
cin >> x;
|
||
|
cout << phi(x) << endl;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|