結果

問題 No.897 compαctree
ユーザー htensai
提出日時 2019-12-07 11:39:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-12-24 21:12:19
合計ジャッジ時間 5,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

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) {
       if (k == 1) {
           return (int)(n - 1);
       }
       int idx = 0;
       while (n > 0) {
           n -= (long)(Math.pow(k, idx));
           idx++;
       }
       return idx - 1;
   }
}
0