結果

問題 No.1651 Removing Cards
ユーザー sigma425sigma425
提出日時 2021-08-20 22:02:08
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 2,445 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 197,960 KB
実行使用メモリ 7,528 KB
最終ジャッジ日時 2024-04-22 04:37:14
合計ジャッジ時間 9,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 6 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 154 ms
5,376 KB
testcase_10 AC 154 ms
5,376 KB
testcase_11 AC 156 ms
5,376 KB
testcase_12 AC 157 ms
5,376 KB
testcase_13 AC 156 ms
5,376 KB
testcase_14 AC 161 ms
5,376 KB
testcase_15 AC 184 ms
7,524 KB
testcase_16 AC 181 ms
7,528 KB
testcase_17 AC 180 ms
7,392 KB
testcase_18 AC 185 ms
7,400 KB
testcase_19 AC 185 ms
7,396 KB
testcase_20 AC 183 ms
7,396 KB
testcase_21 AC 178 ms
7,524 KB
testcase_22 AC 165 ms
7,396 KB
testcase_23 AC 156 ms
5,376 KB
testcase_24 AC 141 ms
5,376 KB
testcase_25 AC 161 ms
7,524 KB
testcase_26 AC 162 ms
7,396 KB
testcase_27 AC 185 ms
7,396 KB
testcase_28 AC 184 ms
7,392 KB
testcase_29 AC 192 ms
7,400 KB
testcase_30 AC 185 ms
7,392 KB
testcase_31 AC 188 ms
7,392 KB
testcase_32 AC 142 ms
5,376 KB
testcase_33 AC 148 ms
5,376 KB
testcase_34 AC 149 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using uint = unsigned int;
using ull = unsigned long long;
#define rep(i,n) for(int i=0;i<int(n);i++)
#define rep1(i,n) for(int i=1;i<=int(n);i++)
#define per(i,n) for(int i=int(n)-1;i>=0;i--)
#define per1(i,n) for(int i=int(n);i>0;i--)
#define all(c) c.begin(),c.end()
#define si(x) int(x.size())
#define pb emplace_back
#define fs first
#define sc second
template<class T> using V = vector<T>;
template<class T> using VV = vector<vector<T>>;
template<class T,class U> void chmax(T& x, U y){if(x<y) x=y;}
template<class T,class U> void chmin(T& x, U y){if(y<x) x=y;}
template<class T> void mkuni(V<T>& v){sort(all(v));v.erase(unique(all(v)),v.end());}
template<class T> int lwb(const V<T>& v, const T& a){return lower_bound(all(v),a) - v.begin();}
template<class T>
V<T> Vec(size_t a) {
    return V<T>(a);
}
template<class T, class... Ts>
auto Vec(size_t a, Ts... ts) {
  return V<decltype(Vec<T>(ts...))>(a, Vec<T>(ts...));
}
template<class S,class T> ostream& operator<<(ostream& o,const pair<S,T> &p){
	return o<<"("<<p.fs<<","<<p.sc<<")";
}
template<class T> ostream& operator<<(ostream& o,const vector<T> &vc){
	o<<"{";
	for(const T& v:vc) o<<v<<",";
	o<<"}";
	return o;
}
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }

#ifdef LOCAL
#define show(x) cerr << "LINE" << __LINE__ << " : " << #x << " = " << (x) << endl
void dmpr(ostream& os){os<<endl;}
template<class T,class... Args>
void dmpr(ostream&os,const T&t,const Args&... args){
	os<<t<<" ~ ";
	dmpr(os,args...);
}
#define shows(...) cerr << "LINE" << __LINE__ << " : ";dmpr(cerr,##__VA_ARGS__)
#define dump(x) cerr << "LINE" << __LINE__ << " : " << #x << " = {";  \
	for(auto v: x) cerr << v << ","; cerr << "}" << endl;
#else
#define show(x) void(0)
#define dump(x) void(0)
#define shows(...) void(0)
#endif

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);		//DON'T USE scanf/printf/puts !!
	cout << fixed << setprecision(20);

	// V<int> vs; rep(i,100) vs.pb(i);
	// while(si(vs)){
	// 	cout << vs[0] << ",";
	// 	V<int> nvs;
	// 	rep(i,si(vs)) if(i%4) nvs.pb(vs[i]);
	// 	vs = nvs;
	// }

	ll K; int Q; cin >> K >> Q;
	V<ll> cand;
	cand.pb(0);
	while(true){
		ll x = cand.back();
		ll nx = x + x/(K-1) + 1;
		if(nx > TEN(18)+1) break;
		cand.pb(nx);
	}
	show(si(cand));
	cand.pb(TEN(18)*2);
	while(Q--){
		ll n; cin >> n; n--;
		cout << *(--upper_bound(all(cand),n)) + 1 << endl;
	}
}
0