結果

問題 No.2416 vs Slime
ユーザー kekenx
提出日時 2023-08-12 22:25:57
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 1,487 ms
コンパイル使用メモリ 192,104 KB
最終ジャッジ日時 2025-02-16 07:36:18
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long powll(long long x, long long n) {
  long long ret = 1;

  while (n > 0) {
    if (n & 1) ret *= x;
    x *= x;
    n >>= 1;
  }

  return ret;
}

int main() {
  long long h, a;
  cin >> h >> a;
  long long count = 0;
  while (h > 0) {
    count++;
    h /= a;
  }
  cout << powll(2LL, count) - 1 << '\n';
  return 0;
}

0