結果

問題 No.897 compαctree
ユーザー rlangevinrlangevin
提出日時 2024-07-29 12:05:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-07-29 12:05:14
合計ジャッジ時間 2,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,204 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 38 ms
52,576 KB
testcase_03 AC 37 ms
52,704 KB
testcase_04 AC 38 ms
52,324 KB
testcase_05 AC 38 ms
53,172 KB
testcase_06 AC 38 ms
53,568 KB
testcase_07 AC 40 ms
52,964 KB
testcase_08 AC 38 ms
52,524 KB
testcase_09 AC 38 ms
52,212 KB
testcase_10 AC 37 ms
52,000 KB
testcase_11 AC 37 ms
52,260 KB
testcase_12 AC 38 ms
52,124 KB
testcase_13 AC 38 ms
52,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

Q = int(input())
for _ in range(Q):
    N, K = map(int, input().split())
    if K == 1:
        print(N - 1)
        continue
    ans = -1
    for d in range(1000):
        if N <= (K ** (d + 1) - 1) // (K - 1):
            ans = d
            break
    print(ans)
0