結果
問題 |
No.897 compαctree
|
ユーザー |
|
提出日時 | 2020-01-20 20:20:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-07-02 23:00:56 |
合計ジャッジ時間 | 4,082 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 TLE * 1 -- * 2 |
ソースコード
q = int(input()) for _ in range(q): n, k = map(int, input().split()) x = 0 ans = 0 while ans < n: ans += k ** x x += 1 print(x-1)