結果
問題 |
No.897 compαctree
|
ユーザー |
|
提出日時 | 2019-10-04 21:24:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 220 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,316 KB |
最終ジャッジ日時 | 2024-10-03 07:07:25 |
合計ジャッジ時間 | 4,000 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 TLE * 1 -- * 2 |
ソースコード
#!/usr/bin/env python3 def f(n, k): acc = 0 d = -1 while acc < n: d += 1 acc += k ** d return d q = int(input()) for _ in range(q): n, k = map(int, input().split()) print(f(n, k))