結果

問題 No.897 compαctree
ユーザー erbowlerbowl
提出日時 2020-04-25 14:48:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 334 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 193,816 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-04-24 17:25:03
合計ジャッジ時間 5,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ll q;
    std::cin >> q;
    for (int i = 0; i < q; i++) {
        ll n,k;
        std::cin >> n>>k;
        ll cnt = 0;
        while(n>0){
            n-= pow(k,cnt);
            cnt++;
        }
        std::cout << cnt-1 << std::endl;
    }
}

0