0_0_38727106_56.cpp: In function 'int main()':
0_0_38727106_56.cpp:140:21: error: 'll' was not declared in this scope
140 | std::vector<ll> &factors = PRFactor.factors;
| ^~
0_0_38727106_56.cpp:140:23: error: template argument 1 is invalid
140 | std::vector<ll> &factors = PRFactor.factors;
| ^
0_0_38727106_56.cpp:140:23: error: template argument 2 is invalid
0_0_38727106_56.cpp:140:45: error: invalid initialization of reference of type 'int&' from expression of type 'std::vector<long long int>'
140 | std::vector<ll> &factors = PRFactor.factors;
| ~~~~~~~~~^~~~~~~
0_0_38727106_56.cpp:142:19: error: expected ';' before 'n'
142 | ll n;
| ^~
| ;
0_0_38727106_56.cpp:143:29: error: 'n' was not declared in this scope
143 | std::cin >> n;
| ^
0_0_38727106_56.cpp:144:25: error: request for member 'clear' in 'factors', which is of non-class type 'int'
144 | factors.clear();
| ^~~~~
0_0_38727106_56.cpp:146:35: error: request for member 'begin' in 'factors', which is of non-class type 'int'
146 | std::sort(factors.begin(), factors.end());
| ^~~~~
0_0_38727106_56.cpp:146:52: error: request for member 'end' in 'factors', which is of non-class type 'int'
146 | std::sort(factors.begin(), factors.end());
| ^~~
0_0_38727106_56.cpp:147:49: error: request for member 'begin' in 'factors', which is of non-class type 'int'
147 | int total = std::unique(factors.begin(), factors.end()) - factors.begin();
| ^~~~~
0_0_38727106_56.cpp:147:66: error: request for member 'end' in 'factors', which is of non-class type 'int'
147 | int total = std::unique(factors.begin(), factors.end()) - factors.begin();
| ^~~
0_0_38727106_56.cpp:147:83: error: request for member 'begin' in 'factors', which is of non-class type 'int'
147 | int total = std::unique(factors.begin(), factors.end()) - factors.begin();
| ^~~~~
0_0_38727106_56.cpp:148:52: error: request for member 'front' in 'factors', which is of non-class type 'int'
148 | std::cout << (total == 1 ? factors.front() % MOD : 1);
| ^~~~~
0_0_38727106_56.cpp:148:62: error: 'MOD' was not declared in this scope
148 | std::cout << (total == 1 ? factors.front() % MOD : 1);
| ^~~
|