Problem smallprimes_ex
User integrateErrorFunction
Submission Time 2026-05-29 15:51:26
Score 0
Max Time N/A
Max Memory N/A

Compile Error

smallprimes_ex.cpp:6:8: error: ‘__uint128’ was not declared in this scope; did you mean ‘__uint128_t’?
6 | vector<__uint128> sieve(const __uint128 &n) {
| ^~~~~~~~~
| __uint128_t
smallprimes_ex.cpp:6:17: error: template argument 1 is invalid
6 | vector<__uint128> sieve(const __uint128 &n) {
| ^
smallprimes_ex.cpp:6:17: error: template argument 2 is invalid
smallprimes_ex.cpp:6:31: error: ‘__uint128’ does not name a type; did you mean ‘__uint128_t’?
6 | vector<__uint128> sieve(const __uint128 &n) {
| ^~~~~~~~~
| __uint128_t
smallprimes_ex.cpp: In function ‘int sieve(const int&)’:
smallprimes_ex.cpp:9:13: error: ‘__uint128’ does not name a type; did you mean ‘__uint128_t’?
9 | } const __uint128 m = (n - 1) >> 1;
| ^~~~~~~~~
| __uint128_t
sma