結果

問題 No.1651 Removing Cards
ユーザー nawawannawawan
提出日時 2021-08-20 22:55:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 204,604 KB
実行使用メモリ 9,320 KB
最終ジャッジ日時 2024-10-14 05:27:44
合計ジャッジ時間 9,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 21 ms
6,820 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 148 ms
6,816 KB
testcase_10 AC 152 ms
6,816 KB
testcase_11 AC 153 ms
6,816 KB
testcase_12 AC 156 ms
6,820 KB
testcase_13 AC 157 ms
6,820 KB
testcase_14 AC 152 ms
6,820 KB
testcase_15 AC 231 ms
8,044 KB
testcase_16 AC 224 ms
8,168 KB
testcase_17 AC 229 ms
8,940 KB
testcase_18 AC 226 ms
7,656 KB
testcase_19 AC 224 ms
7,656 KB
testcase_20 AC 226 ms
7,532 KB
testcase_21 AC 226 ms
8,164 KB
testcase_22 AC 212 ms
8,044 KB
testcase_23 AC 147 ms
6,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 223 ms
8,040 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    long long K, Q;
    cin >> K >> Q;
    vector<ull> ans;
    ans.push_back(K);
    while(ans.back() <= 1000000000000000000ULL){
        ull temp = ans.back();
        ull ub = 8000000000000000000ULL / (K - 1);
        ull lb = 0;
        while(ub - lb > 1){
            long long mid = (ub + lb) / 2;
            long long t = mid * (K - 1);
            if(t < temp) lb = mid;
            else ub = mid;
        }
        ans.push_back(ub + temp);
    }
    while(Q--){
        long long N;
        cin >> N;
        if(N <= K) cout << N << endl;
        else{
            int ind = lower_bound(ans.begin(), ans.end(), N) - ans.begin();
            cout << ans[ind - 1] << endl;
        }
    }
}
0