結果

問題 No.1651 Removing Cards
ユーザー ytftytft
提出日時 2021-08-29 15:27:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 3,599 ms
コンパイル使用メモリ 339,436 KB
実行使用メモリ 8,416 KB
最終ジャッジ日時 2024-05-01 22:34:57
合計ジャッジ時間 13,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 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 201 ms
5,376 KB
testcase_10 AC 203 ms
5,376 KB
testcase_11 AC 197 ms
5,376 KB
testcase_12 AC 197 ms
5,376 KB
testcase_13 AC 195 ms
5,376 KB
testcase_14 AC 196 ms
5,376 KB
testcase_15 AC 228 ms
8,284 KB
testcase_16 AC 224 ms
8,280 KB
testcase_17 AC 227 ms
8,412 KB
testcase_18 AC 227 ms
8,288 KB
testcase_19 AC 239 ms
8,284 KB
testcase_20 AC 237 ms
8,408 KB
testcase_21 AC 244 ms
8,284 KB
testcase_22 AC 225 ms
8,416 KB
testcase_23 AC 205 ms
5,376 KB
testcase_24 AC 163 ms
5,376 KB
testcase_25 AC 172 ms
5,376 KB
testcase_26 AC 173 ms
5,376 KB
testcase_27 AC 248 ms
8,412 KB
testcase_28 AC 235 ms
8,288 KB
testcase_29 AC 223 ms
8,288 KB
testcase_30 AC 229 ms
8,284 KB
testcase_31 AC 225 ms
8,408 KB
testcase_32 AC 178 ms
5,376 KB
testcase_33 AC 185 ms
5,376 KB
testcase_34 AC 182 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_int.hpp>
using namespace std;
namespace mp = boost::multiprecision;

int main(){
    long long K,Q;
    cin>>K>>Q;
    vector<long long> N(Q);
    long long mN=0;
    for(int i=0;i<Q;i++){
        cin>>N[i];
        mN=max(mN,N[i]);
    }
    vector<long long> X(1);
    X[0]=1;
    while(X[X.size()-1]<=mN){
        long long last=X[X.size()-1];
        X.push_back(last+(last+K-2)/(K-1));
    }
    X.pop_back();
    for(int i=0;i<Q;i++){
        int m=0,M=X.size();
        while(M-m>1){
            int mid=(m+M)/2;
            if(X[mid]<=N[i]){
                m=mid;
            }else{
                M=mid;
            }
        }
        cout<<X[m]<<endl;
    }
}
0