結果

問題 No.897 compαctree
ユーザー neterukunneterukun
提出日時 2019-10-04 21:26:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 64,548 KB
最終ジャッジ日時 2024-10-03 07:09:52
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,128 KB
testcase_01 AC 34 ms
52,744 KB
testcase_02 AC 33 ms
52,176 KB
testcase_03 AC 32 ms
52,400 KB
testcase_04 AC 32 ms
52,592 KB
testcase_05 AC 33 ms
52,316 KB
testcase_06 AC 31 ms
53,232 KB
testcase_07 AC 32 ms
52,812 KB
testcase_08 AC 33 ms
54,040 KB
testcase_09 AC 31 ms
52,032 KB
testcase_10 AC 32 ms
52,508 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())
info = [list(map(int, input().split())) for i in range(q)]

for i in range(q):
    n, k = info[i]
    ans = 0
    while n > 0:
        n -= k**ans
        ans += 1
    print(ans - 1)
0