結果
問題 |
No.897 compαctree
|
ユーザー |
![]() |
提出日時 | 2019-12-07 11:10:37 |
言語 | Java (openjdk 23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 510 bytes |
コンパイル時間 | 3,063 ms |
コンパイル使用メモリ | 74,540 KB |
実行使用メモリ | 82,532 KB |
最終ジャッジ日時 | 2024-12-24 20:11:01 |
合計ジャッジ時間 | 14,184 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 TLE * 3 |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { sb.append(getCount(sc.nextInt(), sc.nextInt())).append("\n"); } System.out.print(sb); } static int getCount(long n, int k) { int idx = 0; while (n > 0) { n -= (long)(Math.pow(k, idx)); idx++; } return idx - 1; } }