結果

問題 No.897 compαctree
ユーザー htensaihtensai
提出日時 2019-12-07 11:39:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-06-07 01:22:40
合計ジャッジ時間 4,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,992 KB
testcase_01 AC 109 ms
40,296 KB
testcase_02 AC 117 ms
40,868 KB
testcase_03 AC 125 ms
41,124 KB
testcase_04 AC 110 ms
39,896 KB
testcase_05 AC 121 ms
41,016 KB
testcase_06 AC 109 ms
40,124 KB
testcase_07 AC 123 ms
40,808 KB
testcase_08 AC 119 ms
41,032 KB
testcase_09 AC 122 ms
41,032 KB
testcase_10 AC 120 ms
41,228 KB
testcase_11 AC 118 ms
41,088 KB
testcase_12 AC 123 ms
41,176 KB
testcase_13 AC 122 ms
41,328 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