結果

問題 No.897 compαctree
ユーザー akanayaakanaya
提出日時 2020-03-29 16:48:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 55,880 KB
最終ジャッジ日時 2025-01-02 15:21:57
合計ジャッジ時間 1,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,488 KB
testcase_01 AC 39 ms
54,948 KB
testcase_02 AC 38 ms
53,956 KB
testcase_03 AC 36 ms
54,304 KB
testcase_04 AC 40 ms
54,696 KB
testcase_05 AC 38 ms
54,204 KB
testcase_06 AC 38 ms
54,824 KB
testcase_07 AC 40 ms
54,272 KB
testcase_08 AC 38 ms
55,880 KB
testcase_09 AC 38 ms
54,984 KB
testcase_10 AC 38 ms
54,896 KB
testcase_11 AC 36 ms
53,860 KB
testcase_12 AC 36 ms
54,448 KB
testcase_13 AC 41 ms
54,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
from collections import Counter

q = int(input())

nkq = [None] * q
for i in range(q):
    nkq[i] = list(map(int, input().split(' ')))

for nk in nkq:
    if nk[1] == 1:
        print(nk[0] -1)
    else:
        n = math.floor(math.log(nk[0] * (nk[1] - 1) + 1, nk[1]))
        print(n)

0