結果

問題 No.1651 Removing Cards
ユーザー jxkokojxkoko
提出日時 2021-08-29 20:02:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,981 bytes
コンパイル時間 2,367 ms
コンパイル使用メモリ 203,396 KB
実行使用メモリ 7,528 KB
最終ジャッジ日時 2024-05-01 23:45:27
合計ジャッジ時間 10,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 5 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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 152 ms
5,376 KB
testcase_10 AC 152 ms
5,376 KB
testcase_11 AC 153 ms
5,376 KB
testcase_12 AC 156 ms
5,376 KB
testcase_13 AC 152 ms
5,376 KB
testcase_14 AC 152 ms
5,376 KB
testcase_15 AC 178 ms
7,520 KB
testcase_16 AC 180 ms
7,396 KB
testcase_17 AC 178 ms
7,524 KB
testcase_18 AC 177 ms
7,400 KB
testcase_19 AC 182 ms
7,524 KB
testcase_20 AC 178 ms
7,520 KB
testcase_21 AC 182 ms
7,528 KB
testcase_22 AC 165 ms
7,396 KB
testcase_23 AC 150 ms
5,376 KB
testcase_24 AC 142 ms
5,376 KB
testcase_25 AC 164 ms
7,524 KB
testcase_26 AC 168 ms
7,396 KB
testcase_27 AC 178 ms
7,524 KB
testcase_28 AC 178 ms
7,528 KB
testcase_29 AC 175 ms
7,524 KB
testcase_30 AC 177 ms
7,396 KB
testcase_31 AC 186 ms
7,396 KB
testcase_32 AC 150 ms
5,376 KB
testcase_33 AC 152 ms
5,376 KB
testcase_34 AC 155 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<int,ll> pil;
typedef pair<ll,int> pli;
typedef pair<ll,ll> pll;
typedef pair<pair<int, int>, int> ppi;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef bitset<60> Bitset;
const ll INFL = 1LL << 60;
const int INF = 1000000005;
const int MOD = 998244353;//1000000007;
ll GCD(ll a, ll b) { return b ? GCD(b, a % b) : a; }
ll LCM(ll a, ll b) { return (a * b) / GCD(a, b); }
bool range(int x,int y,int X,int Y){if(0<=x&&x<X&&0<=y&&y<Y){return true;} return false;}
#define CHOOSE(a) CHOOSE2 a
#define CHOOSE2(a0,a1,a2,a3,a4,x,...) x
#define debug_1(x1) cerr<<#x1<<": "<<x1<<endl
#define debug_2(x1,x2) cerr<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<endl
#define debug_3(x1,x2,x3) cerr<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<endl
#define debug_4(x1,x2,x3,x4) cerr<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<endl
#define debug_5(x1,x2,x3,x4,x5) cerr<<#x1<<": "<<x1<<", "#x2<<": "<<x2<<", "#x3<<": "<<x3<<", "#x4<<": "<<x4<<", "#x5<<": "<<x5<<endl
#ifdef _DEBUG
#define debug(...) CHOOSE((__VA_ARGS__,debug_5,debug_4,debug_3,debug_2,debug_1,~))(__VA_ARGS__)
#define debug_ar(v) do{cerr<<#v": ";for(auto x : v) cerr<<x<<' '; cerr<<endl;}while(0)
#else
#define debug(...)
#define debug_ar(v)
#endif
#pragma endregion
//------------------------------------------------------------------------------------------------------------------------------
int main(void) {
    ios::sync_with_stdio(false);cin.tie(nullptr);
    int K,Q;cin>>K>>Q;
    vl num;
    num.push_back(1);
    int i = 0;
    while(num[i]<1LL<<60){
        num.push_back(num[i]+(num[i]+K-2)/(K-1));
        i++;
    }
    ll N;
    while(Q--){
        cin>>N;
        int idx = upper_bound(num.begin(),num.end(),N) - num.begin() - 1;
        cout<<num[idx]<<endl;
    }  
}
0