#pragma region Macros // #pragma GCC target("avx2") #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include #define ll long long #define ld long double #define rep2(i, a, b) for(ll i = a; i <= b; ++i) #define rep(i, n) for(ll i = 0; i < n; ++i) #define rep3(i, a, b) for(ll i = a; i >= b; --i) #define pii pair #define pll pair #define pb push_back #define eb emplace_back #define vi vector #define vll vector #define vpi vector #define vpll vector #define overload2(_1, _2, name, ...) name #define vec(type, name, ...) vector name(__VA_ARGS__) #define VEC(type, name, size) \ vector name(size); \ IN(name) #define vv(type, name, h, ...) vector> name(h, vector(__VA_ARGS__)) #define VV(type, name, h, w) \ vector> name(h, vector(w)); \ IN(name) #define vvv(type, name, h, w, ...) vector>> name(h, vector>(w, vector(__VA_ARGS__))) #define vvvv(type, name, a, b, c, ...) \ vector>>> name(a, vector>>(b, vector>(c, vector(__VA_ARGS__)))) #define mt make_tuple #define fi first #define se second #define all(c) begin(c), end(c) #define SUM(v) accumulate(all(v), 0LL) #define MIN(v) *min_element(all(v)) #define MAX(v) *max_element(all(v)) #define lb(c, x) distance((c).begin(), lower_bound(all(c), (x))) #define ub(c, x) distance((c).begin(), upper_bound(all(c), (x))) using namespace std; constexpr pii dx4[4] = {pii{1, 0}, pii{0, 1}, pii{-1, 0}, pii{0, -1}}; constexpr pii dx8[8] = {{1, 0}, {1, 1}, {0, 1}, {-1, 1}, {-1, 0}, {-1, -1}, {0, -1}, {1, -1}}; const string YESNO[2] = {"NO", "YES"}; const string YesNo[2] = {"No", "Yes"}; const string yesno[2] = {"no", "yes"}; void YES(bool t = 1) { cout << YESNO[t] << endl; } void Yes(bool t = 1) { cout << YesNo[t] << endl; } void yes(bool t = 1) { cout << yesno[t] << endl; } template using vc = vector; template using vvc = vector>; template using vvvc = vector>; template using vvvvc = vector>; template using pq = priority_queue; template using pqg = priority_queue, greater>; #define si(c) (int)(c).size() #define INT(...) \ int __VA_ARGS__; \ IN(__VA_ARGS__) #define LL(...) \ ll __VA_ARGS__; \ IN(__VA_ARGS__) #define STR(...) \ string __VA_ARGS__; \ IN(__VA_ARGS__) #define CHR(...) \ char __VA_ARGS__; \ IN(__VA_ARGS__) #define DBL(...) \ double __VA_ARGS__; \ IN(__VA_ARGS__) int scan() { return getchar(); } void scan(int &a) { cin >> a; } void scan(long long &a) { cin >> a; } void scan(char &a) { cin >> a; } void scan(double &a) { cin >> a; } void scan(string &a) { cin >> a; } template void scan(pair &p) { scan(p.first), scan(p.second); } template void scan(vector &); template void scan(vector &a) { for(auto &i : a) scan(i); } template void scan(T &a) { cin >> a; } void IN() {} template void IN(Head &head, Tail &...tail) { scan(head); IN(tail...); } template inline bool chmax(T &a, const S &b) { return (a < b ? a = b, 1 : 0); } template inline bool chmin(T &a, const S &b) { return (a > b ? a = b, 1 : 0); } vi iota(int n) { vi a(n); iota(all(a), 0); return a; } template vi iota(vector &a, bool greater = false) { vi res(a.size()); iota(all(res), 0); sort(all(res), [&](int i, int j) { if(greater) return a[i] > a[j]; return a[i] < a[j]; }); return res; } #define UNIQUE(x) sort(all(x)), x.erase(unique(all(x)), x.end()) template T POW(T x, int n) { T res = 1; for(; n; n >>= 1, x *= x) if(n & 1) res *= x; return res; } vector factor(ll x) { vector ans; for(ll i = 2; i * i <= x; i++) if(x % i == 0) { ans.push_back({i, 1}); while((x /= i) % i == 0) ans.back().second++; } if(x != 1) ans.push_back({x, 1}); return ans; } template vector divisor(T x) { vector ans; for(T i = 1; i * i <= x; i++) if(x % i == 0) { ans.pb(i); if(i * i != x) ans.pb(x / i); } return ans; } template void zip(vector &x) { vector y = x; sort(all(y)); for(int i = 0; i < x.size(); ++i) { x[i] = lb(y, x[i]); } } int topbit(signed t) { return t == 0 ? -1 : 31 - __builtin_clz(t); } int topbit(ll t) { return t == 0 ? -1 : 63 - __builtin_clzll(t); } int lowbit(signed a) { return a == 0 ? 32 : __builtin_ctz(a); } int lowbit(ll a) { return a == 0 ? 64 : __builtin_ctzll(a); } // int allbit(int n) { return (1 << n) - 1; } ll allbit(ll n) { return (1LL << n) - 1; } int popcount(signed t) { return __builtin_popcount(t); } int popcount(ll t) { return __builtin_popcountll(t); } bool ispow2(int i) { return i && (i & -i) == i; } int in() { int x; cin >> x; return x; } ll lin() { unsigned long long x; cin >> x; return x; } template pair operator-(const pair &x, const pair &y) { return pair(x.fi - y.fi, x.se - y.se); } template pair operator+(const pair &x, const pair &y) { return pair(x.fi + y.fi, x.se + y.se); } // template pair &operator+=(pair x, const pair &y) { // x = x + y; // return &x; // } // template pair &operator-=(pair x, const pair &y) { // x = x - y; // return &x; // } template ll operator*(const pair &x, const pair &y) { return (ll)x.fi * y.fi + (ll)x.se * y.se; } template struct edge { int from, to; T cost; int id; edge(int to, T cost) : from(-1), to(to), cost(cost) {} edge(int from, int to, T cost) : from(from), to(to), cost(cost) {} edge(int from, int to, T cost, int id) : from(from), to(to), cost(cost), id(id) {} edge &operator=(const int &x) { to = x; return *this; } operator int() const { return to; } }; template using Edges = vector>; using Tree = vector>; using Graph = vector>; template using Wgraph = vector>>; Graph getG(int n, int m = -1, bool directed = false, int margin = 1) { Tree res(n); if(m == -1) m = n - 1; while(m--) { int a, b; cin >> a >> b; a -= margin, b -= margin; res[a].emplace_back(b); if(!directed) res[b].emplace_back(a); } return move(res); } template Wgraph getWg(int n, int m = -1, bool directed = false, int margin = 1) { Wgraph res(n); if(m == -1) m = n - 1; while(m--) { int a, b; T c; cin >> a >> b >> c; a -= margin, b -= margin; res[a].emplace_back(b, c); if(!directed) res[b].emplace_back(a, c); } return move(res); } #define i128 __int128_t #define ull unsigned long long int #define TEST \ INT(testcases); \ while(testcases--) template ostream &operator<<(ostream &os, const vector &v) { for(auto it = begin(v); it != end(v); ++it) { if(it == begin(v)) os << *it; else os << " " << *it; } return os; } template ostream &operator<<(ostream &os, const pair &p) { os << p.first << " " << p.second; return os; } template string to_string(pair p) { return "(" + to_string(p.first) + "," + to_string(p.second) + ")"; } template string to_string(A v) { if(v.empty()) return "{}"; string ret = "{"; for(auto &x : v) ret += to_string(x) + ","; ret.back() = '}'; return ret; } string to_string(string s) { return "\"" + s + "\""; } void dump() { cerr << endl; } template void dump(Head head, Tail... tail) { cerr << to_string(head) << " "; dump(tail...); } #define endl '\n' #ifdef _LOCAL #undef endl #define debug(x) \ cout << #x << ": "; \ dump(x) #else #define debug(x) #endif template static constexpr T inf = numeric_limits::max() / 2; struct Setup_io { Setup_io() { ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); cout << fixed << setprecision(15); } } setup_io; #define drop(s) cout << #s << endl, exit(0) template struct ndFORarray { std::array v; ndFORarray(std::array v_) : v(v_) {} struct ndFORitr { const std::array &v; std::array tmp; bool is_end; ndFORitr(const std::array &v_) : v(v_), tmp(), is_end(false) {} bool operator!=(const ndFORitr &) const { return !is_end; } void operator++() { int pos = N - 1; while(pos != -1) { tmp[pos] += 1; if(tmp[pos] == v[pos]) { tmp[pos] = 0; pos -= 1; } else { break; } } if(pos == -1) { is_end = true; } } const std::array &operator*() const { return tmp; } }; ndFORitr begin() const { return ndFORitr(v); } ndFORitr end() const { return ndFORitr(v); } }; struct ndFORvector { std::vector v; ndFORvector(std::vector v_) : v(v_) {} struct ndFORitr { const std::vector &v; std::vector tmp; bool is_end; ndFORitr(const std::vector &v_) : v(v_), tmp(v.size(), 0), is_end(false) {} bool operator!=(const ndFORitr &) const { return !is_end; } void operator++() { int pos = v.size() - 1; while(pos != -1) { tmp[pos] += 1; if(tmp[pos] == v[pos]) { tmp[pos] = 0; pos -= 1; } else { break; } } if(pos == -1) { is_end = true; } } const std::vector &operator*() const { return tmp; } }; ndFORitr begin() const { return ndFORitr(v); } ndFORitr end() const { return ndFORitr(v); } }; auto ndFOR(std::vector v) { return ndFORvector(v); } template auto ndFOR(Ts... v) { return ndFORarray>::value>({v...}); } #pragma endregion namespace Factorize { struct Random { private: uint32_t a, b, c, d; public: Random(uint32_t seed = 517) { set_seed(seed); } void set_seed(uint32_t seed) { a = seed = 1812433253u * (seed ^ (seed >> 30)); b = seed = 1812433253u * (seed ^ (seed >> 30)) + 1; c = seed = 1812433253u * (seed ^ (seed >> 30)) + 2; d = seed = 1812433253u * (seed ^ (seed >> 30)) + 3; } uint32_t operator()() { uint32_t t = (a ^ (a << 11)); a = b; b = c; c = d; return d = (d ^ (d >> 19)) ^ (t ^ (t >> 8)); } // [0,MAX) int operator()(int MAX) { return (uint64_t) operator()() * MAX >> 32; } // [L,R) uint32_t operator()(int L, int R) { return L + operator()(R - L); } // [0,1) の実数 double drnd() { return (double)operator()() / (1LL << 32); } // 確率 p で true を返す bool prob(const double p) { return (uint32_t)(p * (1LL << 32)) > operator()(); } bool coin() { return operator()() < (1 << 31); } }; Random rnd; using i128 = __int128_t; ll get_factor(ll n) { if(n == 3 or n == 5) return 0; ll x, y; ll iter = rnd(100); while(true) { ++iter; x = iter % n; y = (i128(iter) * i128(iter) + 1) % i128(n); while(1) { ll g = gcd(n, abs(x - y)); if(g == n) break; if(g > 1) return g; x = (i128(x) * i128(x) + 1) % i128(n); y = (i128(y) * i128(y) + 1) % i128(n); y = (i128(y) * i128(y) + 1) % i128(n); } } } ll modpow(ll a, ll n, ll mod) { ll res = 1; while(n) { if(n & 1) res = i128(a) * i128(res) % i128(mod); n >>= 1, a = i128(a) * i128(a) % i128(mod); } return res; } bool miller_rabin_test(ll p, ll s, ll d, ll n) { ll x = modpow(p, d, n); if(x == 1) return true; ll y = n - 1; rep(i, s) { if(x == y) return true; x = i128(x) * i128(x) % i128(n); } return false; } bool miller_rabin(ll n) { if(n == 1) return false; ll d = n - 1, s = 0; while(~d & 1) d >>= 1, ++s; if(n < 4759123141LL) { for(auto p : {2, 7, 61}) { if(p >= n) break; if(!miller_rabin_test(p, s, d, n)) return false; } } else { for(auto p : {2, 325, 9375, 28178, 450775, 9780504, 1795265022}) { if(p >= n) break; if(!miller_rabin_test(p, s, d, n)) return false; } } return true; } map factorize(ll n) { map res; while(~n & 1) res[2]++, n >>= 1; queue que; que.emplace(n); while(!que.empty()) { ll now = que.front(); que.pop(); if(now == 1) continue; if(miller_rabin(now)) { res[now]++; continue; } ll g = get_factor(now); que.emplace(g); que.emplace(now / g); } return res; } bool isPrime(ll n) { return miller_rabin(n); } } // namespace Factorize using namespace Factorize; int main() { LL(n, k); vector> mp; VEC(ll, a, n); rep(i, n) { auto x = a[i]; mp.eb(Factorize::factorize(x)); } auto add = [](map &a, map b) { for(auto [e, x] : b) a[e] += x; }; set> s; rep(b, 1 << n) { if(popcount(b) < k) continue; map f; ll sum = 0; rep(i, n) { if(b & 1 << i) { sum += a[i]; add(f, mp[i]); } } s.emplace(Factorize::factorize(sum)); s.emplace(f); } cout << si(s) << endl; }