結果

問題 No.897 compαctree
ユーザー totori_nyaatotori_nyaa
提出日時 2019-10-04 21:40:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 1,342 ms
コンパイル使用メモリ 167,664 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-03 07:21:34
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

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



signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);
    
    int q;
    cin>>q;
    while(q--){
        int n,k;
        cin>>n>>k;
        n--;
        int ans = 0;
        if(k==1){
            cout << n << endl;
            continue;
        }
        while(n){
            ans++;
            n/=k;
        }
        cout << ans << endl;
    }

}
0