結果

問題 No.897 compαctree
ユーザー ohanaohana
提出日時 2023-10-30 15:16:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 53,736 KB
最終ジャッジ日時 2023-10-30 15:16:02
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math

q = int(input())

for i in range(q):
    n, k = map(int, input().split())
    if k == 1:
        print(n - 1)
    else:
        cnt = 0
        n -= 1
        while n > 0:
            n -= k**cnt
            cnt += 1
        print(cnt)
0