結果

問題 No.897 compαctree
ユーザー htensaihtensai
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,396 KB
testcase_01 AC 151 ms
41,492 KB
testcase_02 AC 152 ms
41,304 KB
testcase_03 AC 151 ms
41,580 KB
testcase_04 AC 138 ms
40,188 KB
testcase_05 AC 151 ms
41,116 KB
testcase_06 AC 149 ms
41,120 KB
testcase_07 AC 139 ms
40,044 KB
testcase_08 AC 151 ms
41,572 KB
testcase_09 AC 152 ms
41,192 KB
testcase_10 AC 152 ms
41,228 KB
testcase_11 AC 151 ms
41,484 KB
testcase_12 AC 151 ms
41,156 KB
testcase_13 AC 150 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

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