結果

問題 No.897 compαctree
ユーザー akanayaakanaya
提出日時 2020-03-29 16:48:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-06-10 19:20:09
合計ジャッジ時間 1,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 40 ms
53,888 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 38 ms
53,888 KB
testcase_05 AC 39 ms
54,144 KB
testcase_06 AC 41 ms
53,876 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 36 ms
54,144 KB
testcase_09 AC 40 ms
54,144 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 42 ms
53,632 KB
testcase_12 AC 41 ms
53,700 KB
testcase_13 AC 40 ms
53,632 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