結果

問題 No.1651 Removing Cards
ユーザー SSRSSSRS
提出日時 2021-08-20 21:51:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 169,616 KB
実行使用メモリ 7,628 KB
最終ジャッジ日時 2024-10-14 03:21:41
合計ジャッジ時間 10,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 190 ms
5,248 KB
testcase_10 AC 196 ms
5,248 KB
testcase_11 AC 195 ms
5,248 KB
testcase_12 AC 196 ms
5,248 KB
testcase_13 AC 195 ms
5,248 KB
testcase_14 AC 194 ms
5,248 KB
testcase_15 AC 218 ms
7,504 KB
testcase_16 AC 210 ms
7,504 KB
testcase_17 AC 220 ms
7,504 KB
testcase_18 AC 219 ms
7,504 KB
testcase_19 AC 218 ms
7,496 KB
testcase_20 AC 218 ms
7,504 KB
testcase_21 AC 222 ms
7,628 KB
testcase_22 AC 214 ms
7,628 KB
testcase_23 AC 198 ms
5,248 KB
testcase_24 AC 166 ms
5,248 KB
testcase_25 AC 186 ms
7,500 KB
testcase_26 AC 183 ms
7,500 KB
testcase_27 AC 232 ms
7,624 KB
testcase_28 AC 226 ms
7,624 KB
testcase_29 AC 217 ms
7,500 KB
testcase_30 AC 209 ms
7,464 KB
testcase_31 AC 221 ms
7,628 KB
testcase_32 AC 180 ms
5,248 KB
testcase_33 AC 179 ms
5,248 KB
testcase_34 AC 185 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int K, Q;
  cin >> K >> Q;
  vector<long long> A;
  A.push_back(1);
  while (true){
    long long nxt = A.back() + (A.back() + K - 2) / (K - 1);
    A.push_back(nxt);
    if (nxt > 2000000000000000000){
      break;
    }
  }
  for (int i = 0; i < Q; i++){
    long long N;
    cin >> N;
    auto itr = upper_bound(A.begin(), A.end(), N);
    itr--;
    cout << *itr << endl;
  }
}
0