結果

問題 No.897 compαctree
ユーザー ateate
提出日時 2019-11-06 13:55:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 195,624 KB
最終ジャッジ日時 2025-01-08 02:21:30
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 15 ms
6,820 KB
testcase_09 AC 11 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    6 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(ll i=0;i<(n);++i)

main(){

  ll q;
  cin>>q;
  vector<ll> n(q),k(q);
  rep(i,q)cin>>n[i]>>k[i];

  auto solve = [](ll n,ll k){
    if(k==1)return n-1;
    n--;
    ll cnt=0,leaf=1;
    while(leaf<n){
      cnt++;
      leaf*=k;
    }
    return cnt;
  };

  rep(i,q){
    cout<<(solve(n[i],k[i]))<<endl;
  }
}
0