結果
問題 |
No.897 compαctree
|
ユーザー |
![]() |
提出日時 | 2020-05-15 21:34:38 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 410 bytes |
コンパイル時間 | 2,509 ms |
コンパイル使用メモリ | 74,100 KB |
実行使用メモリ | 47,216 KB |
最終ジャッジ日時 | 2024-09-19 08:53:18 |
合計ジャッジ時間 | 7,323 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 TLE * 1 -- * 2 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int q = sc.nextInt(); while(q-- > 0) { int n = sc.nextInt(); long k = sc.nextInt(); int d = 0; while(n > 0) { n -= Math.pow(k, d); if(n <= 0) break; d++; } System.out.println(d); } } }