結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 196 ms
5,248 KB
testcase_10 AC 191 ms
5,248 KB
testcase_11 AC 190 ms
5,248 KB
testcase_12 AC 193 ms
5,248 KB
testcase_13 AC 194 ms
5,248 KB
testcase_14 AC 191 ms
5,248 KB
testcase_15 AC 253 ms
8,284 KB
testcase_16 AC 232 ms
8,412 KB
testcase_17 AC 235 ms
8,540 KB
testcase_18 AC 230 ms
8,412 KB
testcase_19 AC 229 ms
8,540 KB
testcase_20 AC 227 ms
8,412 KB
testcase_21 AC 228 ms
8,408 KB
testcase_22 AC 222 ms
8,284 KB
testcase_23 AC 198 ms
5,248 KB
testcase_24 AC 160 ms
5,248 KB
testcase_25 AC 170 ms
5,248 KB
testcase_26 AC 172 ms
5,248 KB
testcase_27 AC 226 ms
8,284 KB
testcase_28 AC 228 ms
8,412 KB
testcase_29 AC 236 ms
8,416 KB
testcase_30 AC 232 ms
8,412 KB
testcase_31 AC 232 ms
8,412 KB
testcase_32 AC 176 ms
5,248 KB
testcase_33 AC 177 ms
5,248 KB
testcase_34 AC 174 ms
5,248 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