#include "bits/stdc++.h" #include using namespace std; using namespace atcoder; using ll = long long; using vl = vector; using pl = pair; using PQ = priority_queue; using PQR = priority_queue, greater<>>; struct edge {long long to;long long cost;edge(long long t,long long c):to(t),cost(c){}}; using Graph = vector>; using WGraph = vector>; constexpr int dx[8]{1,0,-1,0,1,1,-1,-1}; constexpr int dy[8]{0,1,0,-1,1,-1,1,-1}; #define rep(i, n) for(long long (i) = 0; (i) < (n); (i)++) #define all(v) (v).begin(), (v).end() #define pb emplace_back #define V vector #define uniquify(vec) sort(all(vec)); (vec).erase(std::unique((vec).begin(), (vec).end()), (vec).end()) constexpr long long MOD1 = 1e9 + 7; constexpr long long MOD9 = 998244353; constexpr long long INF = MOD1*MOD1+1; constexpr long long LL_MAX = std::numeric_limits::max(); long long safe_mod(long long n, long long m){if(n >= 0) {return n % m;} else return (n%m + m)%m;} __int128 div_ceil(__int128 a, __int128 b){return (a + b - 1) / b;} long long DIG(long long x, long long d){ll ret=0;while(x){x/=d;ret++;}return ret;} long long pw(long long x,long long n) {ll ret=1;while(n>0){if(n&1){ret=ret*x;}if(n>>=1){x=x*x;}}return ret;} template T SUM(const vector &v){T ret{};return(accumulate(all(v), ret));} template T pwmod(T x, long long n, long long m) {T ret=1;while(n>0){if(n&1)ret=ret*x%m;x=x*x%m;n>>=1;}return ret%m;} template void rsort(vector &v) {sort(all(v), greater());} template bool chmax(T &a,const T& b) {if(a bool chmin(T &a,const T& b) {if(a>b){a=b;return true;}return false;} template void fin(const T &a) {cout << a << '\n';exit(0);} template pair mp(const T &a, const S &b){return make_pair(a, b);} template void unique(vector &a){sort(all(a)); a.erase(std::unique(a.begin(), a.end()), a.end());} template vector compress(vector &a){ int n = a.size(); vector ret(n); vector temp = a; unique(a); for(int i = 0; i < n; i++) ret[i] = lower_bound(a.begin(), a.end(), temp[i]) - a.begin(); return ret; } std::ostream &operator<<(std::ostream& os, const modint1000000007 &m){ os << m.val(); return os; } std::ostream &operator<<(std::ostream& os, const modint998244353 &m){ os << m.val(); return os; } template std::ostream &operator<<(std::ostream& os, const pair &p){ os << "(" << p.first << ", " << p.second << ")"; return os; } template std::ostream &operator<<(std::ostream& os, const vector &v){ int n = v.size(); os << "["; for(int i = 0; i < n; i++){ if(i == n - 1) os << v[i]; else os << v[i] << ", "; } os << "]"; return os; } template std::ostream &operator<<(std::ostream& os, const map &mp){ for(auto iter = mp.begin(); iter != mp.end(); iter++){ os << "(" << iter->first << ", " << iter->second << ")" << " "; } return os; } template std::ostream &operator<<(std::ostream& os, const set &s){ os << "{"; for(auto c : s) os << c << " "; os << "}"; return os; } //#define LOCAL #ifdef LOCAL #define dump(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl #else #define dump(x) true #endif //using mint = modint1000000007; //using mint = modint998244353; void solve(){ ll k, q; cin >> k >> q; /* for(ll n = 1; n <= 200; n++){ vl a(n); iota(all(a), 1); while(a.size() >= 2){ //dump(a); vl b; for(ll i = 0; i < a.size(); i++){ if(i % k == 0) continue; b.pb(a[i]); } swap(a, b); } cout << n << '\n'; cout << a << '\n'; cout << '\n'; }*/ V<__int128> list; __int128 a = 1; list.pb(a); for(ll i = 2; a < 1e18; i++){ a = div_ceil(a * k, k-1); list.pb(a); } rep(_, q){ ll n; cin >> n; ll id = upper_bound(all(list), n) - list.begin(); cout << (ll)list[id-1] << '\n'; } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << std::fixed << std::setprecision(15); solve(); return 0; }