結果

問題 No.897 compαctree
ユーザー NoaSaberNoaSaber
提出日時 2021-04-05 22:21:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 183 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 66,616 KB
最終ジャッジ日時 2024-06-10 09:55:23
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
59,556 KB
testcase_01 AC 32 ms
53,536 KB
testcase_02 AC 32 ms
53,880 KB
testcase_03 AC 32 ms
53,560 KB
testcase_04 AC 32 ms
52,948 KB
testcase_05 AC 34 ms
52,152 KB
testcase_06 AC 32 ms
52,680 KB
testcase_07 AC 31 ms
53,356 KB
testcase_08 AC 32 ms
53,620 KB
testcase_09 AC 33 ms
52,980 KB
testcase_10 AC 32 ms
53,884 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

q=int(input())
for i in range(q):
    a,b=map(int,input().split())
    phase=0
    while a>=0:
        a-=b**phase
        if a<=0:
            break
        phase+=1
    print(phase)
0